diff options
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |