2022-09-24 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in the Disc Ripper in rdlibrary(1) that caused the
	'Modify Cart Label' to be grayed out at all times except immediately
	adding a cart to a track.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-09-24 18:20:21 -04:00
parent d8a3d2aa87
commit d9237ddac7
2 changed files with 5 additions and 1 deletions

View File

@@ -23376,3 +23376,7 @@
2022-09-23 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the Disc Ripper in rdlibrary(1) that caused
manual changes to track metadata to be incorrectly applied.
2022-09-24 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the Disc Ripper in rdlibrary(1) that caused the
'Modify Cart Label' to be grayed out at all times except immediately
adding a cart to a track.

View File

@@ -888,7 +888,7 @@ void DiskRipper::selectionChangedData(const QItemSelection &before,
rip_setcut_button->setEnabled(count==1);
rip_setall_button->setEnabled(count>0);
rip_setsingle_button->setEnabled((count>1)&&contiguous);
rip_cartlabel_button->setEnabled(false);
rip_cartlabel_button->setEnabled(count==1);
rip_clear_button->setEnabled(count>0);
}