return the old cursor. oops

This commit is contained in:
Dana Jansens 2007-03-25 17:11:50 +00:00
parent 03be1f8db3
commit ede50bed27

View file

@ -445,7 +445,7 @@ static Cursor load_cursor(const gchar *name, guint fontval)
c = XcursorLibraryLoadCursor(ob_display, name); c = XcursorLibraryLoadCursor(ob_display, name);
#endif #endif
if (c == None) if (c == None)
XCreateFontCursor(ob_display, fontval); c = XCreateFontCursor(ob_display, fontval);
return c; return c;
} }