summaryrefslogtreecommitdiff
path: root/src/command.c
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-12-13 11:46:24 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-12-13 16:30:37 +0100
commit5942e8483b712f1c83be625856ff7ee26ebc3898 (patch)
treeee6970233fafa1ae94bde051e1deacd31b6d08d7 /src/command.c
parentcaf68ab21e373594866ef2b26736d3ae02ac6659 (diff)
downloadpa-sink-ctl-5942e8483b712f1c83be625856ff7ee26ebc3898.tar.gz
pa-sink-ctl-5942e8483b712f1c83be625856ff7ee26ebc3898.tar.bz2
pa-sink-ctl-5942e8483b712f1c83be625856ff7ee26ebc3898.zip
interface: Rename print_sink_list to interface_redraw
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c4
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