Browse Source

Theme fixes for system colors

tags/1.9.4
falkTX 11 years ago
parent
commit
302c8f8b76
1 changed files with 16 additions and 11 deletions
  1. +16
    -11
      source/carla.py

+ 16
- 11
source/carla.py View File

@@ -543,17 +543,6 @@ class CarlaMainW(QMainWindow):
self.loadSettings(True)
self.loadRDFs()

self.setStyleSheet("""
QWidget#w_plugins {
background-color: qlineargradient(spread:pad,
x1:0.0, y1:0.0,
x2:0.2, y2:1.0,
stop:0 rgb( 7, 7, 7),
stop:1 rgb(28, 28, 28)
);
}
""")

# -------------------------------------------------------------
# Internal stuff

@@ -1722,6 +1711,22 @@ class CarlaMainW(QMainWindow):
else:
self.ui.splitter.setSizes([99999, 210])

pal1 = app.palette().base().color()
pal2 = app.palette().button().color()
col1 = "stop:0 rgb(%i, %i, %i)" % (pal1.red(), pal1.green(), pal1.blue())
col2 = "stop:1 rgb(%i, %i, %i)" % (pal2.red(), pal2.green(), pal2.blue())

self.setStyleSheet("""
QWidget#w_plugins {
background-color: qlineargradient(spread:pad,
x1:0.0, y1:0.0,
x2:0.2, y2:1.0,
%s,
%s
);
}
""" % (col1, col2))

self.fSavedSettings = {
"Main/DefaultProjectFolder": settings.value("Main/DefaultProjectFolder", HOME, type=str),
"Main/RefreshInterval": settings.value("Main/RefreshInterval", 50, type=int),


Loading…
Cancel
Save