FlatLaf hinzugefuegt fuer bessere GUI auf macOS

main
Christian Khazanovych 2026-06-24 19:14:13 +02:00
parent 6b9a992a68
commit 1a4ea905ae
2 changed files with 1 additions and 1 deletions

BIN
lib/flatlaf.jar 100644

Binary file not shown.

View File

@ -91,7 +91,7 @@ public class MainWindow extends JFrame {
public static void main(String[] args) { public static void main(String[] args) {
SwingUtilities.invokeLater(() -> { SwingUtilities.invokeLater(() -> {
try { try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); com.formdev.flatlaf.FlatLightLaf.setup();
} catch (Exception ignored) {} } catch (Exception ignored) {}
new MainWindow().setVisible(true); new MainWindow().setVisible(true);
}); });