Dont display codec settings in copy dialog unless we are copying to a device, or from an AudioCD.

This commit is contained in:
craig.p.drummond
2013-05-09 19:08:44 +00:00
parent 34f582b666
commit eaf8809550
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,11 @@
current song. Likewise for %album%
4. Add option (to sidebar context menu) to toggle usage of monochrome icons.
1.0.3
-----
1. Dont display codec settings in copy dialog unless we are copying to a
device, or from an AudioCD.
1.0.2.1
-------
1. Re-spin to add Qt SVG iconengine to windows installer.

View File

@@ -90,7 +90,7 @@ void ActionDialog::controlInfoLabel(Device *dev)
DeviceOptions opts;
if (Device::AudioCd==dev->devType()) {
opts.load(MPDConnectionDetails::configGroupName(MPDConnection::self()->getDetails().name), true);
} else {
} else if (sourceUdi.isEmpty()) {
opts=dev->options();
}