diff options
author | C. McEnroe | 2021-01-16 13:05:01 -0500 |
---|---|---|
committer | C. McEnroe | 2021-01-16 13:05:01 -0500 |
commit | 43b1dba720f452fbdc7a4c577bb1a1002c42f994 (patch) | |
tree | 02becc43a23052ee82cee3de073ed91b970dc7e1 /ui.c | |
parent | d05872303e2313d28f45569851ddeb238fc4d5ea (diff) |
Restore toggling ignore with M--
So that pressing M-- repeatedly maintains the previous behavior.
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui.c b/ui.c index 0d234a7..c787b3c 100644 --- a/ui.c +++ b/ui.c @@ -784,9 +784,12 @@ void uiCloseNum(uint num) { } static void incThresh(struct Window *window, int n) { - if (n < 0 && window->thresh == Ice) return; if (n > 0 && window->thresh == Hot) return; - window->thresh += n; + if (n < 0 && window->thresh == Ice) { + window->thresh = Cold; + } else { + window->thresh += n; + } window->unreadHard = bufferReflow( window->buffer, COLS, window->thresh, window->unreadSoft ); |