mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
Fix make check
Don't try setting GtkShortcutsShortcut::accelerator to a random value, it only accepts strings that it can parse.
This commit is contained in:
parent
0f4663728e
commit
5ee39befb8
@ -661,6 +661,10 @@ test_type (gconstpointer data)
|
||||
pspec->owner_type == GTK_TYPE_BUTTON)
|
||||
continue;
|
||||
|
||||
if (g_type_is_a (type, GTK_TYPE_SHORTCUTS_SHORTCUT) &&
|
||||
g_str_equal (pspec->name, "accelerator"))
|
||||
continue;
|
||||
|
||||
if (g_test_verbose ())
|
||||
g_print ("Property %s.%s\n", g_type_name (pspec->owner_type), pspec->name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user