]> Dogcows Code - chaz/openbox/commitdiff
use theme.show_handle
authorDana Jansens <danakj@orodu.net>
Wed, 10 Sep 2003 17:03:29 +0000 (17:03 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 10 Sep 2003 17:03:29 +0000 (17:03 +0000)
openbox/frame.c

index cbb6dfda7d19d08693aac325933c47988166b88a..483b1066e62240b72dd50936bbc8f09ddf9fa45c 100644 (file)
@@ -271,7 +271,8 @@ void frame_adjust_area(ObFrame *self, gboolean moved,
         if (self->decorations & OB_FRAME_DECOR_TITLEBAR)
             self->innersize.top += ob_rr_theme->title_height + self->rbwidth +
                 (self->rbwidth - self->bwidth);
-        if (self->decorations & OB_FRAME_DECOR_HANDLE)
+        if (self->decorations & OB_FRAME_DECOR_HANDLE &&
+            ob_rr_theme->show_handle)
             self->innersize.bottom += ob_rr_theme->handle_height +
                 self->rbwidth + (self->rbwidth - self->bwidth);
   
@@ -312,7 +313,9 @@ void frame_adjust_area(ObFrame *self, gboolean moved,
             layout_title(self);
 
         if (!fake) {
-            if (self->decorations & OB_FRAME_DECOR_HANDLE) {
+            if (self->decorations & OB_FRAME_DECOR_HANDLE &&
+                ob_rr_theme->show_handle)
+            {
                 XMoveResizeWindow(ob_display, self->handle,
                                   -self->bwidth, FRAME_HANDLE_Y(self),
                                   self->width, ob_rr_theme->handle_height);
This page took 0.027979 seconds and 4 git commands to generate.