From dfc4d0d52332b6a9b916fe45a4a3762d22e73e5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Wed, 7 Jun 2017 17:35:23 +0800 Subject: [PATCH] clutter/stage-view: Allow scales down to 0.5 There is support for scaling logical monitors down to 0.5, so don't let ClutterStageView stand in the way for that. https://bugzilla.gnome.org/show_bug.cgi?id=765011 --- clutter/clutter/clutter-stage-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter/clutter-stage-view.c b/clutter/clutter/clutter-stage-view.c index 7efb9e252..000371247 100644 --- a/clutter/clutter/clutter-stage-view.c +++ b/clutter/clutter/clutter-stage-view.c @@ -362,7 +362,7 @@ clutter_stage_view_class_init (ClutterStageViewClass *klass) g_param_spec_float ("scale", "View scale", "The view scale", - 1.0, G_MAXFLOAT, 1.0, + 0.5, G_MAXFLOAT, 1.0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);