From 1c75a79b279c05fb7049183069942de39536a155 Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Fri, 26 Mar 2004 12:32:29 +0000 Subject: [PATCH] Added support for CMD_TOGGLE_FIND_WRAP. git-svn-id: https://svn.musicpd.org/ncmpc/trunk@498 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- screen.c | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/screen.c b/screen.c index 8626951..8a885f3 100644 --- a/screen.c +++ b/screen.c @@ -94,9 +94,7 @@ paint_top_window(char *header, int volume, int clear) if( options.enable_colors ) wattron(w, LINE_COLORS); - mvwhline(w, 1, 0, ACS_HLINE, screen->top_window.cols); - if( options.enable_colors ) wattroff(w, LINE_COLORS); @@ -267,7 +265,7 @@ int screen_init(void) { /* initialize the curses library */ - initscr(); + initscr(); start_color(); if( options.enable_colors ) { @@ -526,6 +524,11 @@ screen_cmd(mpd_client_t *c, command_t cmd) screen_status_printf("Volume %d%%", c->status->volume); } break; + case CMD_TOGGLE_FIND_WRAP: + options.find_wrap = !options.find_wrap; + screen_status_printf("Find mode: %s", + options.find_wrap ? "Wrapped" : "Normal"); + break; case CMD_SCREEN_PREVIOUS: if( screen->mode > SCREEN_PLAY_WINDOW ) new_mode = screen->mode - 1; @@ -553,21 +556,11 @@ screen_cmd(mpd_client_t *c, command_t cmd) break; case CMD_QUIT: exit(EXIT_SUCCESS); - case CMD_LIST_FIND: - case CMD_LIST_FIND_NEXT: - case CMD_NONE: - case CMD_DELETE: - case CMD_SELECT: - case CMD_LIST_PREVIOUS: - case CMD_LIST_NEXT: - case CMD_LIST_FIRST: - case CMD_LIST_LAST: - case CMD_LIST_NEXT_PAGE: - case CMD_LIST_PREVIOUS_PAGE: + default: break; } } -; + -- 2.30.2