mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
inspector: Make dropdowns bigger
If there's enough values to warrant scrolling, the dropdown was much too small for comfort.
This commit is contained in:
parent
f66172451d
commit
e0deacd236
@ -1072,7 +1072,12 @@ property_editor (GObject *object,
|
||||
}
|
||||
|
||||
if (j >= 10)
|
||||
g_object_set (sw, "vscrollbar-policy", GTK_POLICY_AUTOMATIC, NULL);
|
||||
{
|
||||
g_object_set (sw,
|
||||
"vscrollbar-policy", GTK_POLICY_AUTOMATIC,
|
||||
"min-content-height", 250,
|
||||
NULL);
|
||||
}
|
||||
|
||||
g_type_class_unref (fclass);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user