Skip to content
Snippets Groups Projects

Use same colors in schedule and scheduler GUI

Merged Oscar Gustafsson requested to merge schedulecolors into master
5 files
+ 71
26
Compare changes
  • Side-by-side
  • Inline
Files
5
from qtpy.QtCore import Qt
from qtpy.QtGui import QColor
from qtpy.QtGui import QColor
 
from b_asic._preferences import SIGNAL_COLOR
 
# Buttons/operations/ports
# Buttons/operations/ports
MINBUTTONSIZE = 57
MINBUTTONSIZE = 57
PORTHEIGHT = 19
PORTHEIGHT = 19
@@ -12,4 +13,4 @@ MIN_WIDTH_SCENE = 600
@@ -12,4 +13,4 @@ MIN_WIDTH_SCENE = 600
MIN_HEIGHT_SCENE = 520
MIN_HEIGHT_SCENE = 520
# Interface
# Interface
LINECOLOR = QColor(Qt.GlobalColor.black)
LINECOLOR = QColor(*SIGNAL_COLOR)
Loading