From ccefe2b63253f1fede0591559696544c3cc4d949 Mon Sep 17 00:00:00 2001 From: nomadbyte Date: Tue, 17 Nov 2020 15:20:22 -0600 Subject: [PATCH] GeanyVC: Correct the displaying of tooltip for the attach to menubar action --- geanyvc/src/geanyvc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geanyvc/src/geanyvc.c b/geanyvc/src/geanyvc.c index 4b4c51791..0c4dfa704 100644 --- a/geanyvc/src/geanyvc.c +++ b/geanyvc/src/geanyvc.c @@ -2165,7 +2165,7 @@ plugin_configure(GtkDialog * dialog) gtk_box_pack_start(GTK_BOX(vbox), widgets.cb_editor_menu_entries, TRUE, FALSE, 2); widgets.cb_attach_to_menubar = gtk_check_button_new_with_label(_("Attach menu to menubar")); - gtk_widget_set_tooltip_text(widgets.cb_editor_menu_entries, + gtk_widget_set_tooltip_text(widgets.cb_attach_to_menubar, _("Whether menu for this plugin are getting placed either " "inside tools menu or directly inside Geany's menubar. " "Will take in account after next start of GeanyVC"));