]> Dogcows Code - chaz/openbox/commitdiff
along with r6753, when window is maximized make the borders count as titlebar context...
authorDana Jansens <danakj@orodu.net>
Tue, 22 May 2007 17:59:27 +0000 (17:59 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 22 May 2007 17:59:27 +0000 (17:59 +0000)
openbox/frame.c

index 96e93ba0ad1612128bd7e8346b1cf396d97d5bf6..ba452166bc12c67962726a2058202ab687e921d7 100644 (file)
@@ -1207,7 +1207,7 @@ ObFrameContext frame_context(ObClient *client, Window win, gint x, gint y)
        is fully maximized, then treat it like they clicked in the
        button that is there */
     if (self->max_horz && self->max_vert &&
-        (win == self->title ||
+        (win == self->title || win == self->titletop ||
          win == self->titleleft || win == self->titletopleft ||
          win == self->titleright || win == self->titletopright))
     {
@@ -1223,6 +1223,9 @@ ObFrameContext frame_context(ObClient *client, Window win, gint x, gint y)
         /* title is a border width in from the edge */
         if (win == self->title)
             fx += self->bwidth;
+        /* titletop is a bit to the right */
+        else if (win == self->titletop)
+            fx += ob_rr_theme->grip_width + self->bwidth;
         /* titletopright is way to the right edge */
         else if (win == self->titletopright)
             fx += self->area.width - (ob_rr_theme->grip_width + self->bwidth);
This page took 0.025545 seconds and 4 git commands to generate.