aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaThemes.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-15 19:02:00 -0400
committerKen Moore <moorekou@gmail.com>2015-09-15 19:02:00 -0400
commit043cb2ef441b4ee46961ed837fedab082db14ceb (patch)
tree8f070d92e9b589d2cce1b1f522dfaac0d4ca6631 /libLumina/LuminaThemes.h
parentAdjust the theming of the calendar widgets so that the day/week are a bit mor... (diff)
downloadlumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.gz
lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.bz2
lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.zip
Finally fix up the system tray updates:
Found out that (at least on FreeBSD 10.2 right now), the xcb_damage_create() routine does absolutely nothing (no damage events ever sent out when the window changes). Switching this back to the Xlib XDamageCreate() routine makes it work perfectly again. Need to ask about this upstream and see if this is a known bug/regression in the XCB libraries.
Diffstat (limited to 'libLumina/LuminaThemes.h')
-rw-r--r--libLumina/LuminaThemes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libLumina/LuminaThemes.h b/libLumina/LuminaThemes.h
index 4ded0527..0ff15aa1 100644
--- a/libLumina/LuminaThemes.h
+++ b/libLumina/LuminaThemes.h
@@ -58,7 +58,7 @@ public:
};
// Qt Style override to allow custom themeing/colors
-class LuminaThemeStyle : public QProxyStyle{
+/*class LuminaThemeStyle : public QProxyStyle{
Q_OBJECT
private:
bool darkfont;
@@ -72,7 +72,7 @@ public:
//Subclassed functions
void drawItemText(QPainter*, const QRect&, int, const QPalette&, bool, const QString&, QPalette::ColorRole) const;
-};
+};*/
//Simple class to setup a utility to use the Lumina theme
//-----Example usage in "main.cpp" -------------------------------
@@ -98,7 +98,7 @@ private:
QString theme,colors,icons, font, fontsize, cursors; //current settings
QTimer *syncTimer;
QDateTime lastcheck;
- LuminaThemeStyle *style;
+ //LuminaThemeStyle *style;
private slots:
void watcherChange();
bgstack15