summaryrefslogtreecommitdiff
path: root/engines/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-02 06:03:09 +0000
committerDana Jansens <danakj@orodu.net>2003-04-02 06:03:09 +0000
commitb0f7aa39cc1c4a169e9453832a4aa4bea48b9647 (patch)
tree22ffe977295d74bfce20a49ecb7cff9758a6601a /engines/openbox
parent8cd8b1d0f4860eac377513c3742a1f7f7478251d (diff)
base the handle's layout on the grip's parentrelative state
Diffstat (limited to 'engines/openbox')
-rw-r--r--engines/openbox/obengine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/openbox/obengine.c b/engines/openbox/obengine.c
index 64e51231..a4672d85 100644
--- a/engines/openbox/obengine.c
+++ b/engines/openbox/obengine.c
@@ -530,7 +530,7 @@ void frame_adjust_area(ObFrame *self, gboolean moved, gboolean resized)
self->bwidth;
XMapWindow(ob_display, self->handle);
- if (self->a_focused_handle->surface.data.planar.grad ==
+ if (a_focused_grip->surface.data.planar.grad ==
Background_ParentRelative)
RECT_SET(self->a_focused_handle->area, 0, 0,
self->width, ob_s_handle_height);
@@ -539,7 +539,7 @@ void frame_adjust_area(ObFrame *self, gboolean moved, gboolean resized)
GRIP_WIDTH + self->bwidth, 0,
self->width - (GRIP_WIDTH + self->bwidth) * 2,
ob_s_handle_height);
- if (self->a_unfocused_handle->surface.data.planar.grad ==
+ if (a_unfocused_grip->surface.data.planar.grad ==
Background_ParentRelative)
RECT_SET(self->a_unfocused_handle->area, 0, 0,
self->width, ob_s_handle_height);