mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Reduce a warning to a message
The warning interferes with having a testcase to check this behavior, so reduce this to a message.
This commit is contained in:
parent
4384628afb
commit
a0140cad15
@ -167,7 +167,7 @@ _gdk_wayland_cursor_update (GdkWaylandDisplay *display_wayland,
|
||||
|
||||
if (!c)
|
||||
{
|
||||
g_warning (G_STRLOC ": Unable to load %s from the cursor theme", cursor->name);
|
||||
g_message ("Unable to load %s from the cursor theme", cursor->name);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -353,7 +353,10 @@ _gdk_wayland_display_get_cursor_for_name_with_scale (GdkDisplay *display,
|
||||
return GDK_CURSOR (private);
|
||||
|
||||
if (!_gdk_wayland_cursor_update (display_wayland, private))
|
||||
return GDK_CURSOR (private);
|
||||
{
|
||||
g_object_unref (private);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Insert into cache. */
|
||||
g_hash_table_insert (display_wayland->cursor_cache,
|
||||
|
Loading…
Reference in New Issue
Block a user