From 06181f9cc4cfd689cff3f54e28548e7d91d1fbae Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 12 May 2007 17:32:10 +0000 Subject: make the handle resize by default, and give the handle the resize south cursor --- openbox/frame.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openbox') diff --git a/openbox/frame.c b/openbox/frame.c index 6248db7c..716d23ad 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -154,9 +154,10 @@ ObFrame *frame_new(ObClient *client) self->shade = createWindow(self->title, NULL, mask, &attrib); self->icon = createWindow(self->title, NULL, mask, &attrib); self->iconify = createWindow(self->title, NULL, mask, &attrib); - self->handle = createWindow(self->window, NULL, mask, &attrib); mask |= CWCursor; + attrib.cursor = ob_cursor(OB_CURSOR_SOUTH); + self->handle = createWindow(self->window, NULL, mask, &attrib); attrib.cursor = ob_cursor(OB_CURSOR_SOUTHWEST); self->lgrip = createWindow(self->handle, NULL, mask, &attrib); attrib.cursor = ob_cursor(OB_CURSOR_SOUTHEAST); -- cgit v1.2.3