Contol Windwo Update. Velocity Change implemented. FONT and some other Var and method needs to be implemented in the GUI class not in Menu Window

Database Update
This commit is contained in:
Noah
2021-12-01 10:55:23 +01:00
parent 0d5aca00ba
commit 1b05840e5b
5 changed files with 156 additions and 6 deletions
+2 -2
View File
@@ -300,7 +300,7 @@ public class MenuWindow {
private void initModeBox(){
modeBox = new JComboBox<String>();
modeBox.setBounds(180, 257, 100, 20);
modeBox.setBounds(180, 257, 200, 20);
addComboBoxEntry(modeBox, "Randomized");
addComboBoxEntry(modeBox, "Task1");
addComboBoxEntry(modeBox, "Blinker");
@@ -310,7 +310,7 @@ public class MenuWindow {
addComboBoxEntry(modeBox, gui.getAllGrids().get(i));
}
modeName = new JLabel("Select Figure: ");
modeName = new JLabel("Select Grid: ");
modeName.setBounds(50, 250, 200, 30);
modeName.setFont(text);
modeName.setForeground(Color.decode("#121212"));