diff options
author | erdgeist <> | 2007-02-11 04:14:14 +0000 |
---|---|---|
committer | erdgeist <> | 2007-02-11 04:14:14 +0000 |
commit | ecbe7c56f288f7b2a72764b39cc2e06a169fea8b (patch) | |
tree | 752a1b0b37d27392580c870ca01f95d237fe74d1 /vchat-ui.c | |
parent | 7f819c1a4cc13effc45ceac600ff8c7b1e254f3d (diff) |
May specify privcollaps=1 in config to hide pm window on start up
Diffstat (limited to 'vchat-ui.c')
-rwxr-xr-x | vchat-ui.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -788,7 +788,7 @@ resize (int signal) | |||
788 | if( topic ) | 788 | if( topic ) |
789 | wresize(topic,1,screensx); | 789 | wresize(topic,1,screensx); |
790 | 790 | ||
791 | /* public channel is always their and its height depends on: | 791 | /* public channel is always there and its height depends on: |
792 | * existence and visibility of priv window | 792 | * existence and visibility of priv window |
793 | * existence of a topic line (oldschool vchat style) | 793 | * existence of a topic line (oldschool vchat style) |
794 | */ | 794 | */ |
@@ -1211,6 +1211,10 @@ initui (void) | |||
1211 | rl_callback_handler_install ("", (rl_vcpfunc_t *) linecomplete); | 1211 | rl_callback_handler_install ("", (rl_vcpfunc_t *) linecomplete); |
1212 | #endif | 1212 | #endif |
1213 | 1213 | ||
1214 | |||
1215 | if( getintoption(CF_PRIVCOLLAPS) ) | ||
1216 | toggleprivwin(); | ||
1217 | |||
1214 | /* | 1218 | /* |
1215 | writeout( ">> Ctrl-X <<"); | 1219 | writeout( ">> Ctrl-X <<"); |
1216 | 1220 | ||