@@ -133,7 +133,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
133
133
set_titlebar(header);
134
134
135
135
var publish_button = new Gtk .Button .from_icon_name(" document-send" ,
136
- Gtk . IconSize . SMALL_TOOLBAR );
136
+ Gtk . IconSize . LARGE_TOOLBAR );
137
137
publish_button. tooltip_text = _(" Publish to Write.as on the web" );
138
138
publish_button. clicked. connect(() = > {
139
139
canvas. buffer. text + = " \n\n " + publish();
@@ -149,7 +149,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
149
149
darkmode_button. image = new Gtk .Image .from_icon_name(
150
150
icon_theme. has_icon(" writeas-bright-dark" ) ?
151
151
" writeas-bright-dark" : " weather-clear-night" ,
152
- Gtk . IconSize . SMALL_TOOLBAR );
152
+ Gtk . IconSize . LARGE_TOOLBAR );
153
153
darkmode_button. draw_indicator = false ;
154
154
var settings = Gtk . Settings . get_default();
155
155
darkmode_button. toggled. connect(() = > {
@@ -163,7 +163,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
163
163
164
164
var fonts = new Gtk .MenuButton ();
165
165
fonts. tooltip_text = _(" Change document font" );
166
- fonts. image = new Gtk .Image .from_icon_name(" font-x-generic" , Gtk . IconSize . SMALL_TOOLBAR );
166
+ fonts. image = new Gtk .Image .from_icon_name(" font-x-generic" , Gtk . IconSize . LARGE_TOOLBAR );
167
167
fonts. popup = new Gtk .Menu ();
168
168
header. pack_start(fonts);
169
169
0 commit comments