summaryrefslogtreecommitdiff
path: root/src/interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interface.c')
-rw-r--r--src/interface.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interface.c b/src/interface.c
index a4a03cb..15a8fbb 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -16,6 +16,7 @@
#define H_MSG_BOX 3
extern pa_context* context;
+extern gboolean context_ready;
static WINDOW *menu_win;
static WINDOW *msg_win;
@@ -167,6 +168,9 @@ gboolean get_input(gpointer data)
gint c;
gboolean volume_increment = TRUE;
+ if (!context_ready)
+ return FALSE;
+
c = wgetch(menu_win);
switch (c) {
case 'k':