diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-28 23:24:32 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-28 23:24:32 +0200 |
commit | f1dfe0824349712055f343a27d5a30793d139096 (patch) | |
tree | bf91b62c1f564df3e4657dfb2fbc5b71b82cbcab /src/gui/gui-keyboard.c | |
parent | 87d29b19871ef7b967a1a818eae338ed29faade9 (diff) | |
download | weechat-f1dfe0824349712055f343a27d5a30793d139096.zip |
Add keys for undo/redo changes on command line (default: ctrl/alt + underscore) (task #9483)
Diffstat (limited to 'src/gui/gui-keyboard.c')
-rw-r--r-- | src/gui/gui-keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-keyboard.c b/src/gui/gui-keyboard.c index 3228afaf3..7f8d45aac 100644 --- a/src/gui/gui-keyboard.c +++ b/src/gui/gui-keyboard.c @@ -136,7 +136,7 @@ gui_keyboard_grab_end () } if (gui_current_window->buffer->completion) gui_completion_stop (gui_current_window->buffer->completion, 1); - gui_input_text_changed_modifier_and_signal (gui_current_window->buffer); + gui_input_text_changed_modifier_and_signal (gui_current_window->buffer, 1); } free (expanded_key); } |