@@ -288,12 +288,12 @@ public class Gala.WindowClone : Clutter.Actor {
288288 in_slot_animation = true ;
289289 place_widgets (outer_rect. width, outer_rect. height, initial_scale);
290290
291- new PropertyGestureTransition (this , gesture_tracker, " x" , null , (float ) target_x, with_gesture);
292- new PropertyGestureTransition (this , gesture_tracker, " y" , null , (float ) target_y, with_gesture);
293- new PropertyGestureTransition (this , gesture_tracker, " width" , null , (float ) outer_rect. width, with_gesture);
294- new PropertyGestureTransition (this , gesture_tracker, " height" , null , (float ) outer_rect. height, with_gesture);
295- new PropertyGestureTransition (this , gesture_tracker, " shadow-opacity" , 255f , 0f , with_gesture);
296- new PropertyGestureTransition (window_icon, gesture_tracker, " opacity" , 255f , 0f , with_gesture);
291+ new GesturePropertyTransition (this , gesture_tracker, " x" , null , (float ) target_x, with_gesture);
292+ new GesturePropertyTransition (this , gesture_tracker, " y" , null , (float ) target_y, with_gesture);
293+ new GesturePropertyTransition (this , gesture_tracker, " width" , null , (float ) outer_rect. width, with_gesture);
294+ new GesturePropertyTransition (this , gesture_tracker, " height" , null , (float ) outer_rect. height, with_gesture);
295+ new GesturePropertyTransition (this , gesture_tracker, " shadow-opacity" , 255f , 0f , with_gesture);
296+ new GesturePropertyTransition (window_icon, gesture_tracker, " opacity" , 255f , 0f , with_gesture);
297297
298298 GestureTracker . OnUpdate on_animation_update = (percentage) = > {
299299 var width = GestureTracker . animation_value (initial_width, outer_rect. width, percentage);
@@ -359,12 +359,12 @@ public class Gala.WindowClone : Clutter.Actor {
359359 in_slot_animation = true ;
360360 place_widgets (rect. width, rect. height, scale);
361361
362- new PropertyGestureTransition (this , gesture_tracker, " x" , null , (float ) rect. x, with_gesture);
363- new PropertyGestureTransition (this , gesture_tracker, " y" , null , (float ) rect. y, with_gesture);
364- new PropertyGestureTransition (this , gesture_tracker, " width" , null , (float ) rect. width, with_gesture);
365- new PropertyGestureTransition (this , gesture_tracker, " height" , null , (float ) rect. height, with_gesture);
366- new PropertyGestureTransition (this , gesture_tracker, " shadow-opacity" , 0f , 255f , with_gesture);
367- new PropertyGestureTransition (window_icon, gesture_tracker, " opacity" , 0f , 255f , with_gesture);
362+ new GesturePropertyTransition (this , gesture_tracker, " x" , null , (float ) rect. x, with_gesture);
363+ new GesturePropertyTransition (this , gesture_tracker, " y" , null , (float ) rect. y, with_gesture);
364+ new GesturePropertyTransition (this , gesture_tracker, " width" , null , (float ) rect. width, with_gesture);
365+ new GesturePropertyTransition (this , gesture_tracker, " height" , null , (float ) rect. height, with_gesture);
366+ new GesturePropertyTransition (this , gesture_tracker, " shadow-opacity" , 0f , 255f , with_gesture);
367+ new GesturePropertyTransition (window_icon, gesture_tracker, " opacity" , 0f , 255f , with_gesture);
368368
369369 GestureTracker . OnUpdate on_animation_update = (percentage) = > {
370370 var width = GestureTracker . animation_value (initial_width, rect. width, percentage);
0 commit comments