Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
puzzleplayer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Floris
puzzleplayer
Commits
20cbe75d
Commit
20cbe75d
authored
2 months ago
by
PowerfulShuffle
Browse files
Options
Downloads
Patches
Plain Diff
minesweeper title fix
parent
4af0672f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
PuzzlePlayer/PuzzleForm.cs
+2
-2
2 additions, 2 deletions
PuzzlePlayer/PuzzleForm.cs
with
2 additions
and
2 deletions
PuzzlePlayer/PuzzleForm.cs
+
2
−
2
View file @
20cbe75d
...
...
@@ -204,9 +204,9 @@ namespace PuzzlePlayer_Namespace
titlebox
.
Size
=
new
Size
(
180
,
50
);
titlebox
.
BackColor
=
this
.
BackColor
;
titlebox
.
ForeColor
=
Color
.
White
;
titlebox
.
Text
=
puzzleType
;
if
(
Board
is
not
Minesweeper
)
titlebox
.
Text
=
puzzleType
;
else
titlebox
.
Text
=
"Mines"
;
titlebox
.
Font
=
new
Font
(
"Verdana"
,
24
,
FontStyle
.
Bold
);
Controls
.
Add
(
informationbox
);
informationbox
.
Location
=
new
Point
(
20
,
90
);
informationbox
.
Size
=
new
Size
(
180
,
300
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment