clutter/stage: Remove 'minimum window size' logic

It was a feature relevant for when Clutter was an application toolkit
that wanted the application window to communicate a minimum size to the
windowing system.

Now, clutter is part of the windowing system component, so this feature
doesn't make any sense, so remove it.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2002>
This commit is contained in:
Jonas Ådahl
2021-09-17 11:55:39 +02:00
committed by Marge Bot
parent 259a906b8c
commit 7058013660
3 changed files with 2 additions and 137 deletions

View File

@@ -71,10 +71,6 @@ test_stage_sizing_main (int argc, char *argv[])
clutter_actor_add_child (rect, label);
clutter_actor_add_child (box, rect);
clutter_stage_set_minimum_size (CLUTTER_STAGE (stage),
clutter_actor_get_width (box),
clutter_actor_get_height (box));
clutter_actor_show (stage);
clutter_test_main ();