diff options
author | portix <none@none> | 2012-07-09 21:43:10 +0200 |
---|---|---|
committer | portix <none@none> | 2012-07-09 21:43:10 +0200 |
commit | defaa98ef4f55edf278eb91de72305e3f4fe7de6 (patch) | |
tree | 2b7b084c46ecb8590d077d0a205f1ef3266005af /src | |
parent | 870d70e7dadd93b088133b3219e3b0e478042a24 (diff) | |
download | dwb-defaa98ef4f55edf278eb91de72305e3f4fe7de6.zip |
Don't ignore BackSpace with modifier
Diffstat (limited to 'src')
-rw-r--r-- | src/dwb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2301,7 +2301,7 @@ dwb_eval_key(GdkEventKey *e) { return false; } /* don't show backspace in the buffer */ - if (keyval == GDK_KEY_BackSpace ) { + if (keyval == GDK_KEY_BackSpace && CLEAN_STATE(e) == 0) { if (dwb.state.mode & AUTO_COMPLETE) { completion_clean_autocompletion(); } |