Skip to content

Commit ead5e54

Browse files
authored
Merge branch 'master' into modeswitch
2 parents 61cb171 + 42102a5 commit ead5e54

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

data/com.github.writeas.writeas-gtk.appdata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<content_attribute id="language-humor">none</content_attribute>
7070
<content_attribute id="language-discrimination">none</content_attribute>
7171
<content_attribute id="social-chat">none</content_attribute>
72-
<content_attribute id="social-info">none</content_attribute>
72+
<content_attribute id="social-info">moderate</content_attribute>
7373
<content_attribute id="social-audio">none</content_attribute>
7474
<content_attribute id="social-location">none</content_attribute>
7575
<content_attribute id="social-contacts">none</content_attribute>

src/window.vala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
133133
set_titlebar(header);
134134

135135
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");
137138
publish_button.clicked.connect(() => {
138139
canvas.buffer.text += "\n\n" + publish();
139140

@@ -157,7 +158,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
157158

158159
var fonts = new Gtk.MenuButton();
159160
fonts.tooltip_text = _("Change document font");
160-
fonts.image = new Gtk.Image.from_icon_name("font-x-generic", Gtk.IconSize.SMALL_TOOLBAR);
161+
fonts.image = new Gtk.Image.from_icon_name("font-x-generic", Gtk.IconSize.LARGE_TOOLBAR);
161162
fonts.popup = new Gtk.Menu();
162163
header.pack_start(fonts);
163164

0 commit comments

Comments
 (0)