mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-20 06:52:24 +00:00
Fix Select/Back in message window not getting localised correctly. (#418)
This commit is contained in:
parent
910d043f19
commit
c68b5247c7
1 changed files with 2 additions and 2 deletions
|
|
@ -470,8 +470,8 @@ void MessageWindow::Draw()
|
||||||
|
|
||||||
std::array<Button, 2> buttons =
|
std::array<Button, 2> buttons =
|
||||||
{
|
{
|
||||||
Button(Localise("Common_Select"), EButtonIcon::LMB),
|
Button("Common_Select", EButtonIcon::LMB),
|
||||||
Button(Localise("Common_Back"), EButtonIcon::Escape),
|
Button("Common_Back", EButtonIcon::Escape),
|
||||||
};
|
};
|
||||||
|
|
||||||
ButtonGuide::Open(buttons);
|
ButtonGuide::Open(buttons);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue