diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-12 17:32:10 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-12 17:32:10 +0000 |
| commit | 06181f9cc4cfd689cff3f54e28548e7d91d1fbae (patch) | |
| tree | 07bc712651ccc1e1e39a52b757feedfd9727008b /openbox/frame.c | |
| parent | 18c0714c518b6893835cded4967a5edcb47940f9 (diff) | |
make the handle resize by default, and give the handle the resize south cursor
Diffstat (limited to 'openbox/frame.c')
| -rw-r--r-- | openbox/frame.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |
