about summary refs log tree commit diff stats
path: root/windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'windows.c')
-rw-r--r--windows.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows.c b/windows.c
index 46544f80..61ffd1db 100644
--- a/windows.c
+++ b/windows.c
@@ -60,7 +60,7 @@ void win_switch_to(int i)
     _curr_win = i;
 
     if (i == 0) {
-        title_bar_show("Profanity. Type /help for help information.");
+        title_bar_title();
     } else {
         title_bar_show(_wins[i].from);
     }
@@ -77,7 +77,7 @@ void win_close_win(void)
     
     // go back to console window
     _curr_win = 0;
-    title_bar_show("Profanity. Type /help for help information.");
+    title_bar_title();
 }
 
 int win_in_chat(void)