Skip to content

Commit 665598f

Browse files
author
Martin Plieske
committed
realligned more of ViewController.java
1 parent 3b23db5 commit 665598f

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

src/main/java/de/doubleslash/keeptime/view/ViewController.java

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,8 @@ public class ViewController {
102102

103103
@FXML
104104
private Label bigTimeLabel;
105-
106105
@FXML
107106
private Label allTimeLabel;
108-
109107
@FXML
110108
private Label todayAllSeconds;
111109

@@ -114,7 +112,6 @@ public class ViewController {
114112

115113
@FXML
116114
private Button minimizeButton;
117-
118115
@FXML
119116
private Button closeButton;
120117

@@ -148,7 +145,6 @@ private class Delta {
148145

149146
private Stage mainStage;
150147
private Controller controller;
151-
152148
private Model model;
153149

154150
public void setController(final Controller controller, final Model model) {
@@ -160,12 +156,16 @@ public void setController(final Controller controller, final Model model) {
160156
updateProjectView();
161157
}
162158

163-
private Stage reportStage;
159+
private final Canvas taskbarCanvas = new Canvas(32, 32);
160+
161+
private final BooleanProperty mouseHoveringProperty = new SimpleBooleanProperty(false);
162+
public static final LongProperty activeWorkSecondsProperty = new SimpleLongProperty(0);
163+
public static final ObjectProperty<Color> fontColorProperty = new SimpleObjectProperty<>();
164164

165+
private Stage reportStage;
165166
private ReportController reportController;
166167

167168
private Stage settingsStage;
168-
169169
private SettingsController settingsController;
170170

171171
private ProjectsListViewController projectsListViewController;
@@ -490,14 +490,6 @@ public void secondInitialize() {
490490
availableProjectsListView, searchTextField, false);
491491
}
492492

493-
public static final ObjectProperty<Color> fontColorProperty = new SimpleObjectProperty<>();
494-
495-
private final Canvas taskbarCanvas = new Canvas(32, 32);
496-
497-
private final BooleanProperty mouseHoveringProperty = new SimpleBooleanProperty(false);
498-
499-
public static final LongProperty activeWorkSecondsProperty = new SimpleLongProperty(0);
500-
501493
private void setUpTextArea() {
502494
textArea.setWrapText(true);
503495
textArea.setEditable(false);

0 commit comments

Comments
 (0)