- added an initial implementation of a dark theme using the qdarktheme (performance is not great and there are some artifacts); the theme is activated once the gray icons are checked in the Preferences

This commit is contained in:
Marius Stanciu
2022-01-11 23:21:18 +02:00
committed by Marius
parent 1ccf4b38c6
commit 2165ebe419
5 changed files with 18 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ ASSEST_PATH = assets/linux
INSTALL_PATH = /usr/share/flatcam-beta
APPS_PATH = /usr/share/applications
MIN_PY3_MINOR_VERSION := 5
MIN_PY3_MINOR_VERSION := 6
PY3_MINOR_VERSION := $(shell python3 --version | cut -d'.' -f2)
ifneq ($(MIN_PY3_MINOR_VERSION), $(firstword $(sort $(PY3_MINOR_VERSION) $(MIN_PY3_MINOR_VERSION))))