]> Dogcows Code - chaz/openbox/blobdiff - openbox/frame.c
prevent flicker in the follow actiosn again instead of in focus fallback. focus fallb...
[chaz/openbox] / openbox / frame.c
index 5834041dbc071e1edcbec0bddec0f5b471c818b7..f3425ba3a840d386128980e61af597e75bbf5788 100644 (file)
@@ -353,6 +353,11 @@ void frame_adjust_area(ObFrame *self, gboolean moved,
         } else
             self->width = self->client->area.width + self->cbwidth_x * 2;
 
+        /* some elements are sized based of the width, so don't let them have
+           negative values */
+        self->width = MAX(self->width,
+                          (ob_rr_theme->grip_width + self->bwidth) * 2) + 1;
+
         STRUT_SET(self->size,
                   self->cbwidth_x + (!self->max_horz ? self->bwidth : 0),
                   self->cbwidth_y + self->bwidth,
@@ -743,6 +748,7 @@ void frame_adjust_area(ObFrame *self, gboolean moved,
     if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR))
         XResizeWindow(ob_display, self->label, self->label_width,
                       ob_rr_theme->label_height);
+
 }
 
 static void frame_adjust_cursors(ObFrame *self)
This page took 0.022736 seconds and 4 git commands to generate.