Skip to content

Commit

Permalink
Updated Pipeline To Support Multi-OS & Added Support for PyPI Release
Browse files Browse the repository at this point in the history
  • Loading branch information
coldsofttech committed Apr 13, 2024
1 parent 437de62 commit f91b75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Constants:
APP_WINDOW_HEIGHT = 250 # Height of the application window
APP_PALETTE_BACKGROUND = '#FFFFFF' # Background color of the application
APP_PALETTE_FOREGROUND = '#000000' # Foreground color of the application
APP_THEME = 'xpnative' # Theme of the application
APP_THEME = 'xpnative' if platform.system().lower() == 'windows' else 'clam' # Theme of the application
APP_LABEL_FONT_TYPE = 'Segoe UI' # Font type for labels
APP_LABEL_FONT_SIZE = 8 # Font size for labels
APP_LABEL_FONT_STYLE = 'bold' # Font style for labels
Expand Down

0 comments on commit f91b75d

Please sign in to comment.