mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-31 22:19:44 +01:00
searchable gettext for undo/redo notes
This commit is contained in:
parent
37b3091432
commit
b7f9ba5c2d
1 changed files with 1 additions and 1 deletions
|
@ -3328,7 +3328,7 @@ void process_editor_buffer(const bool undo)
|
|||
|
||||
if (buffer->size() == 0)
|
||||
{
|
||||
ed.show_note(loc::gettext(undo ? "ERROR: Nothing to undo" : "ERROR: Nothing to redo"));
|
||||
ed.show_note(undo ? loc::gettext("ERROR: Nothing to undo") : loc::gettext("ERROR: Nothing to redo"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue