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

Don't reset the VTE when pressing Ctrl-[CD] if bash keys are enabled,

because they are now sent to the VTE.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1929 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 84225249
......@@ -3,6 +3,9 @@
* src/prefs.c:
Fix segfault when manually editing a keybinding and selecting another
item.
* src/vte.c:
Don't reset the VTE when pressing Ctrl-[CD] if bash keys are enabled,
because they are now sent to the VTE.
2007-10-02 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -240,7 +240,7 @@ void vte_close(void)
static gboolean vte_keypress(GtkWidget *widget, GdkEventKey *event, gpointer data)
{
if (event->type != GDK_KEY_RELEASE)
if (event->type != GDK_KEY_RELEASE || vc->enable_bash_keys)
return FALSE;
if ((event->keyval == GDK_c ||
......
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