summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcherview.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp
index 7f86ce1..6354bb7 100644
--- a/core/launcher/launcherview.cpp
+++ b/core/launcher/launcherview.cpp
@@ -120,27 +120,26 @@ public:
120 QString maj=app->type(); 120 QString maj=app->type();
121 int sl=maj.find('/'); 121 int sl=maj.find('/');
122 if (sl>=0) { 122 if (sl>=0) {
123 QString k = maj.left(sl); 123 QString k = maj.left(sl);
124 mimes.replace(k,(void*)1); 124 mimes.replace(k,(void*)1);
125 } 125 }
126 } 126 }
127 127
128 void drawBackground( QPainter *p, const QRect &r ) 128 void drawBackground( QPainter *p, const QRect &r )
129 { 129 {
130 Config config("qpe"); 130 Config config("qpe");
131 config.setGroup("Appearance"); 131 config.setGroup("Appearance");
132 QString backgroundImage = config.readEntry("BackgroundImage"); 132 QString backgroundImage = config.readEntry("BackgroundImage","launcher/opie-background");
133 133 // if (backgroundImage.isNull()) backgroundImage="launcher/opie-background";
134 if (backgroundImage.isNull()) backgroundImage="launcher/opie-background";
135 int backgroundMode = QPixmap::defaultDepth() >= 12 ? 1 : 0; 134 int backgroundMode = QPixmap::defaultDepth() >= 12 ? 1 : 0;
136 //int backgroundMode = 2; 135 //int backgroundMode = 2;
137 136
138 if ( backgroundMode == 1 ) { 137 if ( backgroundMode == 1 ) {
139 138
140 // Double buffer the background 139 // Double buffer the background
141 static QPixmap *bg = NULL; 140 static QPixmap *bg = NULL;
142 static QColor bgColor; 141 static QColor bgColor;
143 142
144 if ( (bg == NULL) || (bgColor != colorGroup().button()) ) { 143 if ( (bg == NULL) || (bgColor != colorGroup().button()) ) {
145 // Create a new background double buffer 144 // Create a new background double buffer
146 if (bg == NULL) 145 if (bg == NULL)