forked from AuroraMiddleware/gtk
gdkcursor-x11.c: fix building without HAVE_XCURSOR
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
This commit is contained in:
parent
85fe6cb2c4
commit
98a30bbf3e
@ -824,10 +824,13 @@ _gdk_x11_display_supports_cursor_color (GdkDisplay *display)
|
||||
}
|
||||
|
||||
void
|
||||
_gdk_x11_display_get_default_cursor_size (GdkDisplay *display)
|
||||
_gdk_x11_display_get_default_cursor_size (GdkDisplay *display,
|
||||
guint *width,
|
||||
guint *height)
|
||||
{
|
||||
/* no idea, really */
|
||||
return 20;
|
||||
*width = *height = 20;
|
||||
return;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user