mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 14:17:39 +02:00
Some tempo changes improvements
This commit is contained in:
@ -38,7 +38,7 @@ namespace RhythmHeavenMania.Editor
|
||||
|
||||
public void Undo()
|
||||
{
|
||||
if (!canUndo()) return;
|
||||
if (!canUndo() || Conductor.instance.NotStopped()) return;
|
||||
|
||||
if (historyStack.Count > 0)
|
||||
{
|
||||
@ -49,7 +49,7 @@ namespace RhythmHeavenMania.Editor
|
||||
|
||||
public void Redo()
|
||||
{
|
||||
if (!canRedo()) return;
|
||||
if (!canRedo() || Conductor.instance.NotStopped()) return;
|
||||
|
||||
if (redoHistoryStack.Count > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user