Commit b7f284cfd279626aa8ac4a1df0cecdbe995267ac

Stefan Sperling 2018-10-07T11:49:47

fix inverted default in tog's view_needs_focus_indication()

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tog/tog.c b/tog/tog.c
index 47557c3..18a06ad 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -488,7 +488,7 @@ view_needs_focus_indication(struct tog_view *view)
 			return 1;
 	}
 
-	return 1;
+	return 0;
 }
 
 static const struct got_error *