From 256d0ef947af42aaf4321bc00b838e3b180c3981 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Wed, 4 May 2022 14:13:05 -0400 Subject: [PATCH] 2022-05-04 Fred Gleason * Modified the 'Edit Cart' dialog in rdlibrary(1) so as to disable the 'Beats Per Minute:' control when opened in multi-edit mode. Signed-off-by: Fred Gleason --- ChangeLog | 4 ++++ rdlibrary/edit_cart.cpp | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8ba65640..189f4e62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23042,3 +23042,7 @@ * Modified the 'Edit Cart' dialog in rdlibrary(1) so as to default the 'Group:' and 'Usage:' controls to '[unchanged]' when opened in multi-edit mode. +2022-05-04 Fred Gleason + * Modified the 'Edit Cart' dialog in rdlibrary(1) so as to + disable the 'Beats Per Minute:' control when opened in multi-edit + mode. diff --git a/rdlibrary/edit_cart.cpp b/rdlibrary/edit_cart.cpp index 7908695a..ea502ee2 100644 --- a/rdlibrary/edit_cart.cpp +++ b/rdlibrary/edit_cart.cpp @@ -631,6 +631,8 @@ EditCart::EditCart(const QList &cartnums,QString *path,bool new_cart, else { //Multi Edit rdcart_group_box->setCurrentIndex(0); rdcart_usage_box->setCurrentIndex(0); + rdcart_controls.bpm_spin->setDisabled(true); + rdcart_bpm_label->setDisabled(true); rdcart_notes_button->hide(); }