summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorportix <none@none>2012-07-09 21:43:10 +0200
committerportix <none@none>2012-07-09 21:43:10 +0200
commitdefaa98ef4f55edf278eb91de72305e3f4fe7de6 (patch)
tree2b7b084c46ecb8590d077d0a205f1ef3266005af /src
parent870d70e7dadd93b088133b3219e3b0e478042a24 (diff)
downloaddwb-defaa98ef4f55edf278eb91de72305e3f4fe7de6.zip
Don't ignore BackSpace with modifier
Diffstat (limited to 'src')
-rw-r--r--src/dwb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dwb.c b/src/dwb.c
index 2975bc21..2014ed24 100644
--- a/src/dwb.c
+++ b/src/dwb.c
@@ -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();
}