Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bricked
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
PlayWallDesktop wird heute 10 Jahre alt!
Show more breadcrumbs
Robert Goldmann
Bricked
Commits
a4abc14c
Commit
a4abc14c
authored
Oct 22, 2016
by
Robert Goldmann
Browse files
Options
Downloads
Patches
Plain Diff
fixed listview selection issue
parent
982e2d7a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/de/bricked/ui/LevelPackSelectController.java
+1
-0
1 addition, 0 deletions
src/de/bricked/ui/LevelPackSelectController.java
src/de/bricked/ui/LevelSelectController.java
+2
-1
2 additions, 1 deletion
src/de/bricked/ui/LevelSelectController.java
with
3 additions
and
1 deletion
src/de/bricked/ui/LevelPackSelectController.java
+
1
−
0
View file @
a4abc14c
...
@@ -115,6 +115,7 @@ public class LevelPackSelectController
...
@@ -115,6 +115,7 @@ public class LevelPackSelectController
LevelPack
selectedPack
=
listView
.
getSelectionModel
().
getSelectedItem
();
LevelPack
selectedPack
=
listView
.
getSelectionModel
().
getSelectedItem
();
if
(
selectedPack
!=
null
)
if
(
selectedPack
!=
null
)
{
{
listView
.
getSelectionModel
().
clearSelection
();
game
.
setLevelPack
(
selectedPack
);
game
.
setLevelPack
(
selectedPack
);
try
try
...
...
This diff is collapsed.
Click to expand it.
src/de/bricked/ui/LevelSelectController.java
+
2
−
1
View file @
a4abc14c
...
@@ -117,6 +117,7 @@ public class LevelSelectController
...
@@ -117,6 +117,7 @@ public class LevelSelectController
Level
selectedLevel
=
listView
.
getSelectionModel
().
getSelectedItem
();
Level
selectedLevel
=
listView
.
getSelectionModel
().
getSelectedItem
();
if
(
selectedLevel
!=
null
)
if
(
selectedLevel
!=
null
)
{
{
listView
.
getSelectionModel
().
clearSelection
();
game
.
setLevel
(
selectedLevel
);
game
.
setLevel
(
selectedLevel
);
try
try
...
...
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