mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Variant 3: cannot change history, cannot reset index (the "default")
This commit is contained in:
@ -45,8 +45,6 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
if (selectedIndex == HistoryCount)
|
||||
originalMessage = Text;
|
||||
else if (!string.IsNullOrEmpty(Text))
|
||||
messageHistory[selectedIndex] = Text;
|
||||
|
||||
Text = messageHistory[--selectedIndex];
|
||||
|
||||
@ -56,9 +54,6 @@ namespace osu.Game.Graphics.UserInterface
|
||||
if (selectedIndex == HistoryCount)
|
||||
return true;
|
||||
|
||||
if (!string.IsNullOrEmpty(Text))
|
||||
messageHistory[selectedIndex] = Text;
|
||||
|
||||
if (selectedIndex == HistoryCount - 1)
|
||||
{
|
||||
selectedIndex = HistoryCount;
|
||||
|
Reference in New Issue
Block a user