about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-04-20 23:39:17 +0100
committerJames Booth <boothj5@gmail.com>2013-04-20 23:39:17 +0100
commitc7100203e464ebc684eadb83020564b1d51e4e43 (patch)
tree69f86a04ef7cb0d3fe2b8b94c3c917f769cd53e5 /src/command
parent3e66b0a9d2d17d17dd599e3747b34492ac8c6e9f (diff)
downloadprofani-tty-c7100203e464ebc684eadb83020564b1d51e4e43.tar.gz
Moved cons_about() to console module
Diffstat (limited to 'src/command')
-rw-r--r--src/command/command.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 1a0596b6..5ceb004a 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -1550,6 +1550,9 @@ _cmd_about(gchar **args, struct cmd_help_t help)
 {
     cons_show("");
     cons_about();
+    if (!win_current_is_console()) {
+        status_bar_new(0);
+    }
     return TRUE;
 }
 
@@ -1808,6 +1811,10 @@ _cmd_who(gchar **args, struct cmd_help_t help)
         }
     }
 
+    if (!win_current_is_console()) {
+        status_bar_new(0);
+    }
+
     return TRUE;
 }