Author: sagamusix
Date: Sat Jun 29 18:40:50 2024
New Revision: 21116
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21116
Log:
[Fix] The new extended note key octaves were overlapping with the shortcuts introduced in r21113.
Modified:
trunk/OpenMPT/mptrack/CommandSet.cpp
Modified: trunk/OpenMPT/mptrack/CommandSet.cpp
==============================================================================
--- trunk/OpenMPT/mptrack/CommandSet.cpp Sat Jun 29 18:11:51 2024 (r21115)
+++ trunk/OpenMPT/mptrack/CommandSet.cpp Sat Jun 29 18:40:50 2024 (r21116)
@@ -1384,11 +1384,11 @@
{2067, kcOrderlistQueueAtRowEnd, _T("Queue Pattern (Transition at end of current row)")},
{2068, kcSampleConvertNormalLoopToSustain, _T("Convert Normal Loop to Sustain Loop")},
{2069, kcSampleConvertSustainLoopToNormal, _T("Convert Sustain Loop to Normal Loop")},
- {2070, kcGotoNoteColumn, _T("Go to note column")},
- {2071, kcGotoInstrColumn, _T("Go to instrument column")},
- {2072, kcGotoVolumeColumn, _T("Go to volume effect column")},
- {2073, kcGotoCommandColumn, _T("Go to effect command column")},
- {2074, kcGotoParamColumn, _T("Go to effect parameter column")},
+ {2096, kcGotoNoteColumn, _T("Go to note column")},
+ {2097, kcGotoInstrColumn, _T("Go to instrument column")},
+ {2098, kcGotoVolumeColumn, _T("Go to volume effect column")},
+ {2099, kcGotoCommandColumn, _T("Go to effect command column")},
+ {2100, kcGotoParamColumn, _T("Go to effect parameter column")},
};
// clang-format on
|