commit 5360e1a9dfbd99b39ed6acb3f763bf35440bfddd
parent 8444e02ee8cd455cc15ab47f8ef6ec1a58b35949
Author: Michael Rasmussen <mir@datanom.net>
Date: Wed, 14 Apr 2021 17:07:57 +0200
Add tooltip for entering authorization code
Signed-off-by: Michael Rasmussen <mir@datanom.net>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/prefs_account.c b/src/prefs_account.c
@@ -2354,6 +2354,7 @@ static void oauth2_create_widget_func(PrefsPage * _page,
oauth2_authcode_entry = gtk_entry_new ();
gtk_widget_show (oauth2_authcode_entry);
gtk_widget_set_size_request (oauth2_authcode_entry, DEFAULT_ENTRY_WIDTH, -1);
+ gtk_widget_set_tooltip_text(oauth2_authcode_entry, _("Paste complete URL from browser or the provided auth token"));
gtk_box_pack_start (GTK_BOX (hbox), oauth2_authcode_entry, TRUE, TRUE, 0);
hbox = gtk_hbox_new (FALSE, 8);