Fix Ctrl-click on a word when Numpad is enabled.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3063 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
03e9292069
commit
656b466df0
@ -1,3 +1,9 @@
|
||||
2008-10-10 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||
|
||||
* src/editor.c:
|
||||
Fix Ctrl-click on a word when Numpad is enabled.
|
||||
|
||||
|
||||
2008-10-08 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
||||
* plugins/splitwindow.c:
|
||||
|
@ -198,7 +198,7 @@ on_editor_button_press_event (GtkWidget *widget,
|
||||
gint ss = sci_get_selection_start(doc->editor->sci);
|
||||
sci_set_selection_end(doc->editor->sci, ss);
|
||||
}
|
||||
if (event->type == GDK_BUTTON_PRESS && event->state == GDK_CONTROL_MASK)
|
||||
if (event->type == GDK_BUTTON_PRESS && event->state & GDK_CONTROL_MASK)
|
||||
{
|
||||
sci_set_current_position(sci, editor_info.click_pos, FALSE);
|
||||
keybindings_send_command(GEANY_KEY_GROUP_GOTO, GEANY_KEYS_GOTO_TAGDEFINITION);
|
||||
|
Loading…
x
Reference in New Issue
Block a user