summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-16 13:05:01 -0500
committerJune McEnroe <june@causal.agency>2021-01-16 13:05:01 -0500
commit43b1dba720f452fbdc7a4c577bb1a1002c42f994 (patch)
tree02becc43a23052ee82cee3de073ed91b970dc7e1
parentGeneralize ignore toggling to visibility threshold (diff)
downloadcatgirl-43b1dba720f452fbdc7a4c577bb1a1002c42f994.tar.gz
catgirl-43b1dba720f452fbdc7a4c577bb1a1002c42f994.zip
Restore toggling ignore with M--
So that pressing M-- repeatedly maintains the previous behavior.
Diffstat (limited to '')
-rw-r--r--ui.c7
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
 	);
2019-09-07Add -x flag to titleJune McEnroe 2019-09-07Ignore SIGPIPE in relayJune McEnroe 2019-09-07Add A Memory Called EmpireJune McEnroe 2019-09-05Handle lack of Content-TypeJune McEnroe 2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe 2019-09-05Decode entities in titlesJune McEnroe 2019-09-05Print title as soon as it's availableJune McEnroe 2019-09-05Use CURL_PREFIX to set flagsJune McEnroe 2019-09-05Add titleJune McEnroe 2019-09-04Add Avorter n'est pas tuerJune McEnroe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroe