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.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/windows.c b/windows.c
index 60c4201a..8725a7d7 100644
--- a/windows.c
+++ b/windows.c
@@ -39,8 +39,16 @@ void gui_close(void)
     endwin();
 }
 
-void switch_to(int i)
+int is_active(int i)
 {
+    if (strcmp(wins[i].from, "") == 0)
+        return FALSE;
+    else
+        return TRUE;
+}
+
+void switch_to(int i)
+{    
     touchwin(wins[i].win);
     wrefresh(wins[i].win);
     curr_win = i;
@@ -64,6 +72,8 @@ void close_win(void)
     // go back to console window
     touchwin(wins[0].win);
     wrefresh(wins[0].win);
+
+    title_bar_show("Console, type /help for help information");
 }
 
 int in_chat(void)