From 5942e8483b712f1c83be625856ff7ee26ebc3898 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 13 Dec 2011 11:46:24 +0100 Subject: interface: Rename print_sink_list to interface_redraw --- src/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.c') diff --git a/src/command.c b/src/command.c index 3abe744..52af20a 100644 --- a/src/command.c +++ b/src/command.c @@ -66,7 +66,7 @@ up(struct context *ctx, int key) } else if (ctx->chooser_input >= 0) --ctx->chooser_input; - print_sink_list(ctx); + interface_redraw(ctx); } static void @@ -82,7 +82,7 @@ down(struct context *ctx, int key) } else if (ctx->chooser_input < (sink_input_len(ctx, sink) - 1)) ++ctx->chooser_input; - print_sink_list(ctx); + interface_redraw(ctx); } static void -- cgit