Kaydet (Commit) 9f7f6d20 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix Go to tag declaration/definition

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@391 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 7a158f85
......@@ -3,9 +3,10 @@
* src/highlighting.c, data/filetypes.css: improved colouring
2006-06-01 Nick Treleaven <nick.treleaven@btinternet.com>
2006-06-02 Nick Treleaven <nick.treleaven@btinternet.com>
* src/dialogs.c: Fix dialog path warnings for command-line files.
* src/callbacks.c: Fix Go to tag declaration/definition.
2006-05-31 Nick Treleaven <nick.treleaven@btinternet.com>
......
......@@ -1288,7 +1288,7 @@ on_goto_tag_activate (GtkMenuItem *menuitem,
guint i, j;
const GPtrArray *tags;
if (utils_strcmp(_("Goto tag definition"), gtk_label_get_text(GTK_LABEL(gtk_bin_get_child(GTK_BIN(menuitem))))))
if (menuitem == GTK_MENU_ITEM(lookup_widget(app->popup_menu, "goto_tag_definition1")))
type = tm_tag_function_t;
else
type = tm_tag_prototype_t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment