Skip to content

Commit 3e00f6b

Browse files
authored
Update StickyView.vala
1 parent 730360f commit 3e00f6b

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/Widgets/StickyView.vala

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,25 +45,8 @@ public class jorts.StickyView : Granite.HyperTextView {
4545
this.top_margin = 10;
4646
this.set_hexpand (true);
4747
this.set_vexpand (true);
48-
49-
this.zoom = zoom;
50-
this.max_zoom = 300;
51-
this.min_zoom = 50;
52-
}
53-
54-
55-
public void zoom_in() {
56-
if ((this.zoom + 50) <= this.max_zoom) {
57-
this.zoom = this.zoom + 50;
58-
}
59-
6048
}
6149

62-
public void zoom_out() {
63-
if ((this.zoom - 50) >= this.min_zoom) {
64-
this.zoom = this.zoom - 50;
65-
}
66-
}
6750

6851
public string get_content() {
6952
Gtk.TextIter start,end;

0 commit comments

Comments
 (0)