properly initialize source output type dropdown; show string for record streams properly
git-svn-id: file:///home/lennart/svn/public/pavucontrol/trunk@77 c17c95f2-f111-0410-90bf-f30a9569010c
This commit is contained in:
parent
99cad6b3ea
commit
93aa980ebc
|
@ -810,6 +810,7 @@ MainWindow::MainWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade:
|
|||
Gtk::Window(cobject),
|
||||
showSinkInputType(SINK_INPUT_CLIENT),
|
||||
showSinkType(SINK_ALL),
|
||||
showSourceOutputType(SOURCE_OUTPUT_CLIENT),
|
||||
showSourceType(SOURCE_NO_MONITOR) {
|
||||
|
||||
x->get_widget("streamsVBox", streamsVBox);
|
||||
|
@ -828,6 +829,7 @@ MainWindow::MainWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade:
|
|||
|
||||
sourcesVBox->set_reallocate_redraws(true);
|
||||
streamsVBox->set_reallocate_redraws(true);
|
||||
recsVBox->set_reallocate_redraws(true);
|
||||
sinksVBox->set_reallocate_redraws(true);
|
||||
|
||||
sinkInputTypeComboBox->set_active((int) showSinkInputType);
|
||||
|
@ -1081,6 +1083,8 @@ void MainWindow::updateDeviceVisibility() {
|
|||
if (is_empty)
|
||||
noStreamsLabel->show();
|
||||
|
||||
is_empty = true;
|
||||
|
||||
for (std::map<uint32_t, SourceOutputWidget*>::iterator i = sourceOutputWidgets.begin(); i != sourceOutputWidgets.end(); ++i) {
|
||||
SourceOutputWidget* w = i->second;
|
||||
|
||||
|
|
Loading…
Reference in New Issue