@@ -63,25 +63,13 @@ public class Jorts.SettingsPopover : Gtk.Popover {
6363 THEME SELECTION
6464 */
6565
66- // //TRANSLATORS: The label is displayed above colored pills the user can click to choose a theme color
67- // var color_button_label = new Granite.HeaderLabel (_("Sticky Note Colour"));
68- // color_button_label.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL);
69- // color_button_label.tooltip_text = _("Choose a colour for this sticky note");
70- // color_button_label.margin_top = 9;
71-
72- // setting_grid.append (color_button_label);
73-
74-
75- // TODO: Multiline
7666 var color_button_box = new Jorts .ColorBox (theme) {
7767 margin_start = 12 ,
7868 margin_end = 12
7969 };
8070
8171 color_button_box. theme_changed. connect ((selected) = > {this . theme_changed (selected);});
8272
83-
84-
8573 /*
8674 ZOOM SELECTION
8775 */
@@ -111,7 +99,7 @@ public class Jorts.SettingsPopover : Gtk.Popover {
11199 this.zoom_out_button.clicked.connect (() => {this . zoom_changed (" zoom_out" );});
112100 this.zoom_default_button.clicked.connect (() => {this . zoom_changed (" reset" );});
113101 this.zoom_in_button.clicked.connect (() => {this . zoom_changed (" zoom_in" );});
114-
102+
115103 var font_size_box = new Gtk .Box (HORIZONTAL , 0 ) {
116104 homogeneous = true ,
117105 hexpand = true ,
@@ -121,7 +109,7 @@ public class Jorts.SettingsPopover : Gtk.Popover {
121109
122110 font_size_box.append (this .zoom_out_button );
123111 font_size_box.append (this .zoom_default_button );
124- font_size_box.append (this .zoom_in_button );
112+ font_size_box.append (this .zoom_in_button );
125113 font_size_box.add_css_class (Granite .STYLE_CLASS_LINKED );
126114
127115 /*
@@ -146,7 +134,7 @@ public class Jorts.SettingsPopover : Gtk.Popover {
146134 // TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100%
147135 // It must stay as "%d" in the translation so the app can replace it with the current zoom level.
148136 var label = _(" %d %%" ). printf (zoom);
149- this . zoom_default_button. set_label (label);
137+ this . zoom_default_button. set_label (label);
150138 }
151139
152140
0 commit comments