mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-11 17:28:29 +12:00
Minor localization adjustments (#984)
This commit is contained in:
parent
43976ca7eb
commit
5b27d32cb7
10 changed files with 50 additions and 56 deletions
|
@ -238,11 +238,11 @@ wxWindow* InputSettings2::initialize_page(size_t index)
|
|||
// add/remove buttons
|
||||
auto* bttn_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
|
||||
auto* add_api = new wxButton(page, wxID_ANY, wxT(" + "), wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
auto* add_api = new wxButton(page, wxID_ANY, " + ", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
add_api->Bind(wxEVT_BUTTON, &InputSettings2::on_controller_add, this);
|
||||
bttn_sizer->Add(add_api, 0, wxALL, 5);
|
||||
|
||||
auto* remove_api = new wxButton(page, wxID_ANY, wxT(" - "), wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
auto* remove_api = new wxButton(page, wxID_ANY, " - ", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
|
||||
remove_api->Bind(wxEVT_BUTTON, &InputSettings2::on_controller_remove, this);
|
||||
bttn_sizer->Add(remove_api, 0, wxALL, 5);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue