We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c29a9 commit ca7bf3dCopy full SHA for ca7bf3d
core/Objects/Project.vala
@@ -82,6 +82,14 @@ public class Objects.Project : Objects.BaseObject {
82
}
83
84
public int child_order { get; set; default = 0; }
85
+
86
+ string _view_id;
87
+ public string view_id {
88
+ get {
89
+ _view_id ="project-%s".printf (id_string);
90
+ return _view_id;
91
+ }
92
93
94
string _parent_id_string;
95
public string parent_id_string {
@@ -246,8 +254,6 @@ public class Objects.Project : Objects.BaseObject {
246
254
public signal void label_filter_change ();
247
255
248
256
construct {
249
- view_id ="project-%s".printf (id_string);
250
-
251
257
deleted.connect (() => {
252
258
Idle.add (() => {
253
259
Services.Database.get_default ().project_deleted (this);
0 commit comments