Skip to content

Commit e1d26a2

Browse files
committed
fix build mistake
1 parent 927b915 commit e1d26a2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Services/ScribblyController.vala

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/*************************************************/
99
/**
1010
* Responsible to apply RedactedScript font
11+
* Give it a window and it will simply follow settings
1112
*/
1213
public class Jorts.ScribblyController : Object {
1314

@@ -17,13 +18,11 @@ public class Jorts.ScribblyController : Object {
1718
public bool scribble {
1819
get { return _scribble;}
1920
set { scribble_follow_focus (value);}
20-
};
21+
}
2122

2223
public ScribblyController (Jorts.StickyNoteWindow window) {
2324
this.window = window;
24-
}
2525

26-
construct {
2726
Application.gsettings.bind (
2827
"scribbly-mode-active",
2928
this, "scribble",
@@ -57,7 +56,7 @@ public class Jorts.ScribblyController : Object {
5756
}
5857

5958
/**
60-
* Wrapper to abstract setting/removing CSS as a book
59+
* Wrapper to abstract setting/removing CSS as a bool
6160
*/
6261
private void scribbly_set (bool if_scribbly) {
6362
if (if_scribbly) {

0 commit comments

Comments
 (0)