mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-12-31 23:49:44 +01:00
Show other view names
alsamixer shows all view names in the View: line so that user can understand what it means. The currently used view is shown with brackets and emphasized.
This commit is contained in:
parent
6781eaa78c
commit
e188eaf097
1 changed files with 4 additions and 4 deletions
|
@ -730,17 +730,17 @@ static void display_item_info(int elem_index, snd_mixer_selem_id_t *sid, int is_
|
||||||
if (xlen > sizeof(string) - 1)
|
if (xlen > sizeof(string) - 1)
|
||||||
xlen = sizeof(string) - 1;
|
xlen = sizeof(string) - 1;
|
||||||
mixer_dc (DC_PROMPT);
|
mixer_dc (DC_PROMPT);
|
||||||
mvaddstr (3, 2, "View: ");
|
mvaddstr (3, 2, "View: Playback Capture All ");
|
||||||
mixer_dc (DC_TEXT);
|
mixer_dc (DC_TEXT);
|
||||||
switch (mixer_view) {
|
switch (mixer_view) {
|
||||||
case VIEW_PLAYBACK:
|
case VIEW_PLAYBACK:
|
||||||
mvaddstr (3, 8, "Playback");
|
mvaddstr (3, 8, "[Playback]");
|
||||||
break;
|
break;
|
||||||
case VIEW_CAPTURE:
|
case VIEW_CAPTURE:
|
||||||
mvaddstr (3, 8, "Capture");
|
mvaddstr (3, 18, "[Capture]");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
mvaddstr (3, 8, "All");
|
mvaddstr (3, 27, "[All]");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
mixer_dc (DC_PROMPT);
|
mixer_dc (DC_PROMPT);
|
||||||
|
|
Loading…
Reference in a new issue