diff options
author | portix <portix@gmx.net> | 2011-06-29 17:51:01 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-06-29 17:51:01 +0200 |
commit | 4163a0acc6555e5127133beaa3aec71ccb669d74 (patch) | |
tree | 25d418f1152931312fd1048dd80834c32c45cc47 /src/dwb.c | |
parent | 83f48a518b1dfd77d8504614dad2752ad492e4f0 (diff) | |
download | dwb-4163a0acc6555e5127133beaa3aec71ccb669d74.zip |
Allow non ascii shortcuts, fixes #34
Diffstat (limited to 'src/dwb.c')
-rw-r--r-- | src/dwb.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2017,6 +2017,8 @@ dwb_eval_key(GdkEventKey *e) { KeyMap *tmp = NULL; GList *coms = NULL; + PRINT_DEBUG("buffer: %s key: %s", buf, key); + for (GList *l = dwb.keymap; l; l=l->next) { KeyMap *km = l->data; if (km->map->entry) { |