You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public delegate voidDoneCallback (boolcancel_action);
13
+
public delegate voidDoneCallback (intcompletions);
14
14
15
15
/**
16
16
* The actor whose property will be animated.
@@ -100,13 +100,13 @@ public class Gala.GesturePropertyTransition : Object {
100
100
101
101
if (actual_from_value.type () != current_value.type ()) {
102
102
warning ("from_value of type %s is not of the same type as the property %s which is %s. Can't animate.", from_value.type_name (), property, current_value.type_name ());
103
-
finish (true);
103
+
finish (0);
104
104
return;
105
105
}
106
106
107
107
if (current_value.type () != to_value.type ()) {
108
108
warning ("to_value of type %s is not of the same type as the property %s which is %s. Can't animate.", to_value.type_name (), property, current_value.type_name ());
109
-
finish (true);
109
+
finish (0);
110
110
return;
111
111
}
112
112
@@ -152,9 +152,9 @@ public class Gala.GesturePropertyTransition : Object {
0 commit comments