diff options
| author | Colin Guthrie <cguthrie@mandriva.org> | 2010-12-22 14:58:30 +0000 | 
|---|---|---|
| committer | Colin Guthrie <cguthrie@mandriva.org> | 2010-12-22 14:58:30 +0000 | 
| commit | 73e57023ec925af42c8018da8c195e819eb288f7 (patch) | |
| tree | 72a70d1ae99d2f1dcd57a10dd0607dbb4caad3dd | |
| parent | f70ff92ecd9062522a09c8d31d0e25043b177dc5 (diff) | |
source-outputs: Source outputs do not support volume control, so hide the mute and lock channels buttons
| -rw-r--r-- | src/sourceoutputwidget.cc | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sourceoutputwidget.cc b/src/sourceoutputwidget.cc index cb995b5..7064b38 100644 --- a/src/sourceoutputwidget.cc +++ b/src/sourceoutputwidget.cc @@ -36,6 +36,10 @@ SourceOutputWidget::SourceOutputWidget(BaseObjectType* cobject, const Glib::RefP      g_free(txt);      terminate.set_label(_("Terminate Recording")); + +    /* Source Outputs do not have volume controls */ +    muteToggleButton->hide(); +    lockToggleButton->hide();  }  SourceOutputWidget* SourceOutputWidget::create(MainWindow* mainWindow) {  | 
