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