From 58e67738b7ab8bd154578b9ef47462c4434b956a Mon Sep 17 00:00:00 2001 From: Cassidy James Blaede Date: Mon, 17 Dec 2018 11:33:15 -0700 Subject: [PATCH] Add tooltip to publish button It wasn't clear what this button did without pushing it, at which point my note contents were uploaded to the Internet. --- src/window.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window.vala b/src/window.vala index 9c0c64a..669df0e 100644 --- a/src/window.vala +++ b/src/window.vala @@ -134,6 +134,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow { var publish_button = new Gtk.Button.from_icon_name("document-send", Gtk.IconSize.SMALL_TOOLBAR); + publish_button.tooltip_text = _("Publish to Write.as on the web"); publish_button.clicked.connect(() => { canvas.buffer.text += "\n\n" + publish();