no message

This commit is contained in:
2024-10-14 18:41:02 +03:00
parent 702529147d
commit 45447f34f8
54 changed files with 200 additions and 100 deletions

View File

@@ -1,4 +1,5 @@
package Common.Visual.Controls;
import Common.MainModule_;
import Common.Visual.Themes.ThemeElement;
import Common.Visual.UI_;
@@ -10,7 +11,7 @@ public class StyledProgressBar extends JProgressBar implements ThemeElement {
}
@Override
public void applyTheme() {
setBackground(UI_.getTheme().bar_background);
setForeground(UI_.getTheme().bar_foreground);
setBackground(MainModule_.instance.getUI().getTheme().bar_background);
setForeground(MainModule_.instance.getUI().getTheme().bar_foreground);
}
}