mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
4e94500a2a
The patches have been updated to apply cleanly. The patches for the g_warnings in clutter-actor.c have been removed because master now uses CLUTTER_UNITS_FORMAT so they aren't necessary. The clutter-units.h patch now sets CLUTTER_UNITS_FORMAT to 'f'.
16 lines
465 B
Diff
16 lines
465 B
Diff
diff --git a/clutter/clutter-fixed.c b/clutter/clutter-fixed.c
|
|
index 3027a75..315fe32 100644
|
|
--- a/clutter/clutter-fixed.c
|
|
+++ b/clutter/clutter-fixed.c
|
|
@@ -251,8 +251,8 @@ param_fixed_init (GParamSpec *pspec)
|
|
{
|
|
ClutterParamSpecFixed *fspec = CLUTTER_PARAM_SPEC_FIXED (pspec);
|
|
|
|
- fspec->minimum = COGL_FIXED_MIN;
|
|
- fspec->maximum = COGL_FIXED_MAX;
|
|
+ fspec->minimum = CLUTTER_MAXFIXED;
|
|
+ fspec->maximum = CLUTTER_MINFIXED;
|
|
fspec->default_value = 0;
|
|
}
|
|
|