Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nreeves5
cosc220-a2-220188955
Commits
995a7c43
Commit
995a7c43
authored
Jul 07, 2021
by
William Billingsley
Committed by
nreeves5
Jul 24, 2021
Browse files
Make the name label to update more obvious
parent
7bc8346b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/dotsandboxes/Main.java
View file @
995a7c43
...
...
@@ -15,7 +15,8 @@ public class Main extends Application {
public
void
start
(
Stage
primaryStage
)
throws
Exception
{
primaryStage
.
setTitle
(
"Dots and Boxes"
);
Label
label
=
new
Label
(
"My label"
);
// FIXME: Update this label to show your name and student number
Label
label
=
new
Label
(
"Name: (Your name and student number goes here)"
);
BorderPane
borderPane
=
new
BorderPane
();
borderPane
.
setBottom
(
label
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment