We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2844166 commit 818a193Copy full SHA for 818a193
src/BaseItem.vala
@@ -52,14 +52,6 @@ public class Dock.BaseItem : Gtk.Box {
52
}
53
54
55
- private State _state;
56
- public State state {
57
- get { return _state; }
58
- set {
59
- _state = value;
60
- }
61
62
-
63
protected Gtk.Overlay overlay;
64
protected Gtk.GestureClick gesture_click;
65
protected Gtk.Box running_box;
src/WorkspaceSystem/DynamicWorkspaceItem.vala
@@ -8,6 +8,14 @@ public class Dock.DynamicWorkspaceIcon : BaseItem {
8
set_css_name ("icongroup");
9
10
11
+ private State _state;
12
+ public State state {
13
+ get { return _state; }
14
+ set {
15
+ _state = value;
16
+ }
17
18
+
19
public DynamicWorkspaceIcon () {
20
Object (disallow_dnd: true, group: Group.WORKSPACE);
21
0 commit comments