starting optimizations and refactoring

This commit is contained in:
Josh Ashton
2024-03-24 18:46:26 -06:00
parent bf5a54d500
commit 0409a8f41d
5 changed files with 59 additions and 77 deletions
+3 -3
View File
@@ -388,13 +388,13 @@ public class Settings {
// Load the font from the system directory.
if(loadFont("HackNerdFont-Regular") == 0)
font = new Font("Hack Nerd Font", Font.PLAIN, 12);
font = new Font("Hack Nerd Font", Font.PLAIN, 16);
// If the font does not exist, use Arial as the default font.
else
font = new Font("Arial", Font.PLAIN, 12);
font = new Font("Arial", Font.PLAIN, 16);
dimension = new Dimension(1000, 1000);
dimension = new Dimension(600, 800);
resizable = false;
cellGUIStartMode = false;
defaultOpenState = 0;