Skip to content

Commit 69f5ab6

Browse files
committed
Code refactoring.
1 parent f904500 commit 69f5ab6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/cpm/gui/UserInterface.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ protected void propertiesFrame() {
192192
this.tNumber = createTextField(panel, "", 15, 130, 30, 50, 23, color(255, 255, 255), true);
193193
this.tAccuracy = createTextField(panel, "", 15, 130, 80, 50, 23, color(255, 255, 255), true);
194194

195-
this.checkOnTop = createCheckBox(panel, "- always on top.", 15, Font.BOLD, mainFrame.isAlwaysOnTop(), 10, 110, 150, 20);
196-
this.checkAutoSave = createCheckBox(panel, "- auto save data on exit.", 15, Font.BOLD, parameters.isAutoSave(), 10, 130, 200, 20);
195+
this.checkOnTop = createCheckBox(panel, "- always on top.", 15, Font.BOLD, this.mainFrame.isAlwaysOnTop(), 10, 110, 150, 20);
196+
this.checkAutoSave = createCheckBox(panel, "- auto save data on exit.", 15, Font.BOLD, this.parameters.isAutoSave(), 10, 130, 200, 20);
197197

198198
this.bOk = createButton(panel, "OK", 14, null, 140, heightP - 60, 60, 28, true);
199199
this.bCancel = createButton(panel, "Cancel", 14, null, 205, heightP - 60, 80, 28, true);

0 commit comments

Comments
 (0)