about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-01 22:40:55 -0500
committerJune McEnroe <june@causal.agency>2020-02-01 22:41:30 -0500
commit05256b68fef9d9b64b01afb60de31f9c47b60ca1 (patch)
tree97a6b3e5fbcdf22f01f5616c7c9f01d437eaa0ba /chat.c
parentParse IRC styling in UI (diff)
downloadcatgirl-05256b68fef9d9b64b01afb60de31f9c47b60ca1.tar.gz
catgirl-05256b68fef9d9b64b01afb60de31f9c47b60ca1.zip
Implement word wrap
This actually wasn't that bad?
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index 75cca62..ceaf1b5 100644
--- a/chat.c
+++ b/chat.c
@@ -76,7 +76,19 @@ int main(int argc, char *argv[]) {
 	ircConfig(insecure, cert, priv);
 
 	uiInit();
-	uiFormat(Network, Cold, NULL, C "3Trave" U "ling" U C "0,3.." C "0,4.");
+	uiFormat(Network, Cold, NULL, C "3Trave" U "ling" U C "0,3.." C "0,4." R);
+	uiFormat(
+		Network, Cold, NULL,
+		"Jackdaws love my big sphinx of quartz. "
+		"The quick brown fox jumps over the lazy dog. "
+		"Jackdaws love my big sphinx of quartz. "
+		"Jackdaws love my big sphinx of quartz. "
+		"Jackdaws love my big sphinx of quartz. "
+		"The quick brown fox jumps over the lazy dog. "
+		"The quick brown fox jumps over the lazy dog. "
+		"Jackdaws love my big sphinx of quartz. "
+		"Jackdaws love my big sphinx of quartz. "
+	);
 	uiDraw();
 	
 	int irc = ircConnect(host, port);