]> Dogcows Code - chaz/openbox/commitdiff
try grab an icon even when there are none
authorDana Jansens <danakj@orodu.net>
Sun, 28 Sep 2003 06:34:31 +0000 (06:34 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 28 Sep 2003 06:34:31 +0000 (06:34 +0000)
openbox/framerender.c

index a05ef6cfe6e071dd45b1b52ed0d12a50b0b904b5..a19b4ec0d4956693826745278bfa651e74b54490 100644 (file)
@@ -235,12 +235,14 @@ static void framerender_label(ObFrame *self, RrAppearance *a)
 
 static void framerender_icon(ObFrame *self, RrAppearance *a)
 {
+    const ObClientIcon *icon;
+
     if (self->icon_x < 0) return;
 
-    if (self->client->nicons) {
-        const ObClientIcon *icon = client_icon(self->client,
-                                               ob_rr_theme->button_size + 2,
-                                               ob_rr_theme->button_size + 2);
+    icon = client_icon(self->client,
+                       ob_rr_theme->button_size + 2,
+                       ob_rr_theme->button_size + 2);
+    if (icon) {
         a->texture[0].type = RR_TEXTURE_RGBA;
         a->texture[0].data.rgba.width = icon->width;
         a->texture[0].data.rgba.height = icon->height;
This page took 0.023686 seconds and 4 git commands to generate.