diff options
Diffstat (limited to '')
-rw-r--r-- | src/screen.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index ac4a63ee1..5239b82d8 100644 --- a/src/screen.c +++ b/src/screen.c @@ -22,7 +22,6 @@ #include "screen_list.h" #include "screen_utils.h" #include "config.h" -#include "ncmpc.h" #include "i18n.h" #include "support.h" #include "mpdclient.h" @@ -40,6 +39,16 @@ #include <time.h> #include <locale.h> +/** welcome message time [s] */ +static const unsigned SCREEN_WELCOME_TIME = 10; + +/** status message time [s] */ +static const unsigned SCREEN_STATUS_MESSAGE_TIME = 3; + +/* minumum window size */ +static const int SCREEN_MIN_COLS = 14; +static const int SCREEN_MIN_ROWS = 5; + /* screens */ static gboolean welcome = TRUE; |