summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-17 16:18:34 +0000
committerDana Jansens <danakj@orodu.net>2003-04-17 16:18:34 +0000
commit43139ed3734c11c858f92f1c2cc7ed4cdba169cb (patch)
treeea672c555587e4235c269bc883165488f520d316 /openbox/openbox.c
parent4b421dc811d01d7eb0b40edae5513ebdef9da440 (diff)
add the left/right/top/bottom direction arrows and use them for resizing those ways
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index eeb7e0fb..9dd50985 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -151,6 +151,10 @@ int main(int argc, char **argv)
ob_cursors.tr = XCreateFontCursor(ob_display, XC_top_right_corner);
ob_cursors.bl = XCreateFontCursor(ob_display, XC_bottom_left_corner);
ob_cursors.br = XCreateFontCursor(ob_display, XC_bottom_right_corner);
+ ob_cursors.t = XCreateFontCursor(ob_display, XC_top_side);
+ ob_cursors.r = XCreateFontCursor(ob_display, XC_right_side);
+ ob_cursors.b = XCreateFontCursor(ob_display, XC_bottom_side);
+ ob_cursors.l = XCreateFontCursor(ob_display, XC_left_side);
prop_startup(); /* get atoms values for the display */
extensions_query_all(); /* find which extensions are present */