Commit 62aa3a9 1 parent 35d880a commit 62aa3a9 Copy full SHA for 62aa3a9
File tree 2 files changed +4
-3
lines changed
src/grandorgue/combinations
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+ - Fixed combination button lighting when a crescendo was in the Override=Off mode https://github.com/GrandOrgue/grandorgue/issues/1935
1
2
# 3.15.1 (2024-09-03)
2
3
- Fixed saving of Settings->Paths https://github.com/GrandOrgue/grandorgue/issues/1907
3
4
- Fixed crash on releasing a key of any Binauralpipes organ https://github.com/GrandOrgue/grandorgue/issues/1986
Original file line number Diff line number Diff line change @@ -1025,8 +1025,8 @@ void GOSetter::PushGeneral(
1025
1025
= GetCrescendoAddSet (elementSet);
1026
1026
1027
1027
NotifyCmbPushed (cmb.Push (m_state, pExtraSet));
1028
- if (!pExtraSet) { // Otherwise the crescendo in add mode:
1029
- // not to switch off combination buttons
1028
+ if (pButtonToLight || !pExtraSet) { // Otherwise the crescendo in add mode:
1029
+ // not to switch off combination buttons
1030
1030
UpdateAllSetsButtonsLight (pButtonToLight, -1 );
1031
1031
}
1032
1032
}
@@ -1042,7 +1042,7 @@ void GOSetter::PushDivisional(
1042
1042
= GetCrescendoAddSet (elementSet);
1043
1043
1044
1044
NotifyCmbPushed (cmb.Push (m_state, pExtraSet));
1045
- if (!pExtraSet)
1045
+ if (pButtonToLight || !pExtraSet)
1046
1046
UpdateAllSetsButtonsLight (pButtonToLight, cmbManual);
1047
1047
}
1048
1048
}
You can’t perform that action at this time.
0 commit comments