Skip to content

Commit

Permalink
fix Open Other > Video4Linux > Audio Input > ALSA
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Jan 19, 2025
1 parent 671d2d9 commit e5c5db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/video4linuxwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void Video4LinuxWidget::on_v4lAudioComboBox_activated(int index)
m_audioWidget = 0;
if (index == 1)
m_audioWidget = new PulseAudioWidget(this);
else if (index == 3)
else if (index == 2)
m_audioWidget = new AlsaWidget(this);
if (m_audioWidget)
ui->audioLayout->addWidget(m_audioWidget);
Expand Down

0 comments on commit e5c5db3

Please sign in to comment.