Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sinister Zeta Project
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
Sinister Zeta
Sinister Zeta Project
Commits
63878715
Commit
63878715
authored
4 years ago
by
Jason Dittmer (jcd763)
Browse files
Options
Downloads
Patches
Plain Diff
Made MainScreen class public.
parent
2fc19a4d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!45
Prototype to Master for Milestone 5
,
!44
Demo
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Main.java
+2
-2
2 additions, 2 deletions
src/Main.java
src/ui/MainScreen.java
+1
-1
1 addition, 1 deletion
src/ui/MainScreen.java
with
3 additions
and
3 deletions
src/Main.java
+
2
−
2
View file @
63878715
import
javafx.application.Application
;
import
javafx.stage.Stage
;
import
model.OSInterface
;
import
ui.
m
ainScreen
;
import
ui.
M
ainScreen
;
public
class
Main
extends
Application
{
@Override
public
void
start
(
Stage
primaryStage
)
throws
Exception
{
// Initialize at main UI screen
new
m
ainScreen
();
new
M
ainScreen
();
}
...
...
This diff is collapsed.
Click to expand it.
src/ui/MainScreen.java
+
1
−
1
View file @
63878715
...
...
@@ -10,7 +10,7 @@ import javafx.stage.Stage;
* mainScreen is the main UI page for the program. All user functions start here.
*/
class
MainScreen
extends
Pane
{
public
class
MainScreen
extends
Pane
{
Stage
primaryStage
=
new
Stage
();
Scene
mainScreenScene
=
new
Scene
(
this
,
800
,
800
);
...
...
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