added toggle-able notes and and basic button functionality to cell's

This commit is contained in:
Josh Ashton
2024-03-23 22:15:15 -06:00
parent 5e3c4151a6
commit fa3dbf32e2
5 changed files with 85 additions and 34 deletions
+3 -2
View File
@@ -306,6 +306,7 @@ public class Settings {
*/
public void setAutoFillNotes(boolean autoFillNotes) {
this.autoFillNotes = autoFillNotes;
setCellGUIStartMode(autoFillNotes);
updateSettingsFile();
}
@@ -340,9 +341,9 @@ public class Settings {
else
font = new Font("Arial", Font.PLAIN, 12);
dimension = new Dimension(750, 550);
dimension = new Dimension(1000, 1000);
resizable = false;
cellGUIStartMode = false;
cellGUIStartMode = true;
defaultOpenState = 0;
theme = new Theme(new File(appDirectory + "default.theme"));
autoFillNotes = true;