diff options
author | June McEnroe <june@causal.agency> | 2018-09-13 01:03:47 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-13 01:03:47 -0400 |
commit | 4c4d91b4499d3a4bdc3850c4ad8a1713ce3a8e65 (patch) | |
tree | 6580bc689c9d23dd3676406fa636641456713ffc /handle.c | |
parent | Add note about C-o (diff) | |
download | catgirl-4c4d91b4499d3a4bdc3850c4ad8a1713ce3a8e65.tar.gz catgirl-4c4d91b4499d3a4bdc3850c4ad8a1713ce3a8e65.zip |
Rewrite UI again
The persistent topic is gone and the status line is now at the top. The status formatting still needs to be reworked. I also want to try showing the nick in the input window so it really looks like your next message.
Diffstat (limited to '')
-rw-r--r-- | handle.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/handle.c b/handle.c index 98b1e50..a34c864 100644 --- a/handle.c +++ b/handle.c @@ -260,7 +260,6 @@ static void handleReplyTopic(char *prefix, char *params) { struct Tag tag = tagFor(chan); urlScan(tag, topic); - uiTopic(tag, topic); uiFmt( tag, UICold, "The sign in \3%d%s\3 reads, \"%s\"", @@ -277,7 +276,6 @@ static void handleTopic(char *prefix, char *params) { if (!isSelf(nick, user)) tabTouch(tag, nick); urlScan(tag, topic); - uiTopic(tag, topic); uiFmt( tag, UICold, "\3%d%s\3 places a new sign in \3%d%s\3, \"%s\"", |