about summary refs log tree commit diff
path: root/window.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2023-02-05 19:47:49 -0500
committerJune McEnroe <june@causal.agency>2023-02-05 19:47:49 -0500
commit1b4297e6095fea7258f99150fb79b49a01b5519b (patch)
tree3feaa576b3e001d243caa49bc20011c8791b25f6 /window.c
parentFix what went wrong, part 1 (diff)
downloadcatgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.tar.gz
catgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.zip
Fix what went wrong, part 2
Diffstat (limited to '')
-rw-r--r--window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.c b/window.c
index e64095a..e7ec656 100644
--- a/window.c
+++ b/window.c
@@ -118,7 +118,7 @@ uint windowFor(uint id) {
 		window->thresh = windowThreshold;
 	}
 	window->buffer = bufferAlloc();
-	completePush(None, idNames[id]); // color = idColors[id]
+	completePush(None, idNames[id], idColors[id]);
 
 	return windowPush(window);
 }