File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -56,23 +56,29 @@ public class jorts.SettingsPopover : Gtk.Popover {
5656 _("Zoom out")
5757 ) */
5858 };
59- zoom_out_button. clicked. connect (() = > (this . zoom_changed(" zoom_out" );));
59+ zoom_out_button. clicked. connect (() = > {
60+ this . zoom_changed(" zoom_out" );
61+ });
6062
6163 var zoom_default_button = new Gtk .Button () {
6264/* tooltip_markup = Granite.markup_accel_tooltip (
6365 TerminalWidget.ACCELS_ZOOM_DEFAULT,
6466 _("Default zoom level")
6567 ) */
6668 };
67- zoom_default_button. clicked. connect (() = > (this . zoom_changed(" reset" );));
69+ zoom_default_button. clicked. connect (() = > {
70+ this . zoom_changed(" reset" );
71+ });
6872
6973 var zoom_in_button = new Gtk .Button .from_icon_name (" zoom-in-symbolic" ) {
7074/* tooltip_markup = Granite.markup_accel_tooltip (
7175 TerminalWidget.ACCELS_ZOOM_IN,
7276 _("Zoom in")
7377 ) */
7478 };
75- zoom_in_button. clicked. connect (() = > (this . zoom_changed(" zoom_in" );));
79+ zoom_in_button. clicked. connect (() = > {
80+ this . zoom_changed(" zoom_in" );
81+ });
7682
7783 var font_size_box = new Gtk .Box (HORIZONTAL , 0 ) {
7884 homogeneous = true ,
You can’t perform that action at this time.
0 commit comments