summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-17 05:29:11 +0000
committerDana Jansens <danakj@orodu.net>2003-04-17 05:29:11 +0000
commit7e8cdf1ab756376032c379661933fd5d15f8901a (patch)
treef1f1b00ac7c0888439e1beffb05b3795d8a95082
parent75d4428403712469e069c460aea1ea282336a099 (diff)
use the new cursor defn's
-rw-r--r--openbox/frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/frame.c b/openbox/frame.c
index a223aa5e..345eb1f2 100644
--- a/openbox/frame.c
+++ b/openbox/frame.c
@@ -119,9 +119,9 @@ Frame *frame_new()
self->iconify = createWindow(self->title, mask, &attrib);
self->handle = createWindow(self->window, mask, &attrib);
mask |= CWCursor;
- attrib.cursor = ob_cursors.ll_angle;
+ attrib.cursor = ob_cursors.bl;
self->lgrip = createWindow(self->handle, mask, &attrib);
- attrib.cursor = ob_cursors.lr_angle;
+ attrib.cursor = ob_cursors.br;
self->rgrip = createWindow(self->handle, mask, &attrib);
/* the other stuff is shown based on decor settings */