mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
wayland: Pull the cursor theme name out from the setting for it
This avoids us using the default theme and allows us to use a wider range of cursors.
This commit is contained in:
parent
69e9ecf90a
commit
93c3fec125
@ -592,17 +592,24 @@ static void
|
||||
_gdk_wayland_display_load_cursor_theme (GdkWaylandDisplay *wayland_display)
|
||||
{
|
||||
guint w, h;
|
||||
gchar *theme_name = NULL; /* FIXME: Do something here */
|
||||
const gchar *theme_name;
|
||||
GValue v = G_VALUE_INIT;
|
||||
|
||||
g_assert (wayland_display);
|
||||
g_assert (wayland_display->shm);
|
||||
|
||||
_gdk_wayland_display_get_default_cursor_size (GDK_DISPLAY (wayland_display),
|
||||
&w, &h);
|
||||
g_value_init (&v, G_TYPE_STRING);
|
||||
if (gdk_setting_get ("gtk-cursor-theme-name", &v))
|
||||
theme_name = g_value_get_string (&v);
|
||||
else
|
||||
theme_name = "default";
|
||||
|
||||
wayland_display->cursor_theme = wl_cursor_theme_load (theme_name,
|
||||
w,
|
||||
wayland_display->shm);
|
||||
g_value_unset (&v);
|
||||
}
|
||||
|
||||
guint32
|
||||
|
Loading…
Reference in New Issue
Block a user