summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-25 17:11:50 +0000
committerDana Jansens <danakj@orodu.net>2007-03-25 17:11:50 +0000
commitede50bed27b4af16347464e91a9921624901b75b (patch)
tree9ccfa19470f0079c737d00097f91e6ade07a34a0
parent03be1f8db3adde11d82eb478f182106750effc3f (diff)
return the old cursor. oops
-rw-r--r--openbox/openbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index c24ed76a..5c4905ee 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -445,7 +445,7 @@ static Cursor load_cursor(const gchar *name, guint fontval)
c = XcursorLibraryLoadCursor(ob_display, name);
#endif
if (c == None)
- XCreateFontCursor(ob_display, fontval);
+ c = XCreateFontCursor(ob_display, fontval);
return c;
}