aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screen.c11
-rw-r--r--src/screen_utils.c4
2 files changed, 7 insertions, 8 deletions
diff --git a/src/screen.c b/src/screen.c
index 7f21ec934..13e1975c1 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -584,12 +584,6 @@ ncurses_init()
screen->mode = 0;
screen->cols = COLS;
screen->rows = LINES;
-}
-
-int
-screen_init(mpdclient_t *c)
-{
- gint i;
screen->buf = g_malloc(screen->cols);
screen->buf_size = screen->cols;
@@ -649,6 +643,11 @@ screen_init(mpdclient_t *c)
wbkgd(screen->status_window.w, COLOR_PAIR(COLOR_STATUS));
colors_use(screen->progress_window.w, COLOR_PROGRESSBAR);
}
+}
+
+screen_init(mpdclient_t *c)
+{
+ gint i;
/* initialize screens */
i=0;
diff --git a/src/screen_utils.c b/src/screen_utils.c
index 417a74d67..43d57e142 100644
--- a/src/screen_utils.c
+++ b/src/screen_utils.c
@@ -53,7 +53,7 @@ screen_getch(WINDOW *w, char *prompt)
int key = -1;
int prompt_len = strlen(prompt);
- // colors_use(w, COLOR_STATUS_ALERT);
+ colors_use(w, COLOR_STATUS_ALERT);
wclear(w);
wmove(w, 0, 0);
waddstr(w, prompt);
@@ -244,7 +244,7 @@ screen_display_completion_list(screen_t *screen, GList *list)
offset = 0;
}
- colors_use(w, COLOR_STATUS_ALERT);
+ colors_use(w, COLOR_STATUS_ALERT);
while( y<screen->main_window.rows )
{
GList *item = g_list_nth(list, y+offset);