LiquidGUI [1.1.0.0] Dev
- Code cleanup & refactoring. - Platform specific code.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from PyQt6.QtGui import QFont
|
||||
import globals
|
||||
|
||||
mainlabel_font = None
|
||||
sublabel_font = None
|
||||
sublabelvalue_font = None
|
||||
|
||||
if globals.os_type == "Windows":
|
||||
sublabelvalue_font = "Cascadia Code"
|
||||
sublabel_font = "Calibre"
|
||||
mainlabel_font = "Calibre"
|
||||
elif globals.os_type == "Linux":
|
||||
sublabelvalue_font = "Liberation Mono"
|
||||
sublabel_font = "Cantarell"
|
||||
mainlabel_font = "Cantarell"
|
||||
Reference in New Issue
Block a user