Fix Select/Back in message window not getting localised correctly. (#418)

This commit is contained in:
Skyth (Asilkan) 2025-02-16 20:59:29 +03:00 committed by GitHub
parent 910d043f19
commit c68b5247c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -470,8 +470,8 @@ void MessageWindow::Draw()
std::array<Button, 2> buttons =
{
Button(Localise("Common_Select"), EButtonIcon::LMB),
Button(Localise("Common_Back"), EButtonIcon::Escape),
Button("Common_Select", EButtonIcon::LMB),
Button("Common_Back", EButtonIcon::Escape),
};
ButtonGuide::Open(buttons);