diff options
| author | Robert Tari <robert@tari.in> | 2025-05-05 02:06:52 +0200 |
|---|---|---|
| committer | Robert Tari <robert@tari.in> | 2025-05-05 02:06:52 +0200 |
| commit | 562b31895f1e21257a45da403b83ef81de9ae6a3 (patch) | |
| tree | c0c6bac96432b3a7c3d7580a43c778da39f4e59c /src/animate-timer.vala | |
| parent | d32c62a3a2d42a396e1a38d94f1ebb81bc65de32 (diff) | |
| download | arctica-greeter-562b31895f1e21257a45da403b83ef81de9ae6a3.tar.gz arctica-greeter-562b31895f1e21257a45da403b83ef81de9ae6a3.tar.bz2 arctica-greeter-562b31895f1e21257a45da403b83ef81de9ae6a3.zip | |
src/animate-timer.vala: EasingFunc cannot be a GLib.Object property - turn it into a public variable
Diffstat (limited to 'src/animate-timer.vala')
| -rw-r--r-- | src/animate-timer.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/animate-timer.vala b/src/animate-timer.vala index 9f92448..4879cb0 100644 --- a/src/animate-timer.vala +++ b/src/animate-timer.vala @@ -2,6 +2,7 @@ * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Copyright (C) 2025 Robert Tari * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as @@ -18,6 +19,7 @@ * Authors: Robert Ancell <robert.ancell@canonical.com> * Michael Terry <michael.terry@canonical.com> * Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Robert Tari <robert@tari.in> */ private class AnimateTimer : Object @@ -32,7 +34,7 @@ private class AnimateTimer : Object public const int SLOW = 1000; /* Good for animations that convey information that is only presented in the animation */ /* speed is in milliseconds */ - public unowned EasingFunc easing_func { get; private set; } + public unowned EasingFunc easing_func; public int speed { get; set; } public bool is_running { get { return timeout != 0; } } public double progress { get; private set; } |
