We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1cf10 commit fca7efcCopy full SHA for fca7efc
src/Controllers/ColorController.vala
@@ -13,8 +13,6 @@
13
*/
14
public class Cherrypick.ColorController : Object {
15
16
- private static ColorController? instance;
17
-
18
public Cherrypick.Color preview_color {get; set;}
19
public Cherrypick.Color last_picked_color {get; set;}
20
public Cherrypick.ColorHistory color_history {get; set;}
@@ -24,6 +22,7 @@ public class Cherrypick.ColorController : Object {
24
22
/**
25
23
* Gets reference to the controller
26
+ private static ColorController? instance;
27
public static ColorController get_instance () {
28
if (instance == null) {
29
instance = new ColorController ();
0 commit comments