From c43d2c760d3185b69ced31b09f8d9559d7086a31 Mon Sep 17 00:00:00 2001 From: oltolm Date: Sun, 7 Dec 2025 15:25:15 +0100 Subject: [PATCH] UI: remove unnecessary parenthesis --- src/gui/wxgui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/wxgui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.cpp b/src/gui/wxgui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.cpp index 5750f48b..5015fc5d 100644 --- a/src/gui/wxgui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.cpp +++ b/src/gui/wxgui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.cpp @@ -172,7 +172,7 @@ wxBoxSizer* EmulatedUSBDeviceFrame::AddSkylanderRow(uint8 rowNumber, wxStaticBox row->Add(new wxStaticText(box, wxID_ANY, fmt::format("{} {}", _("Skylander").ToStdString(), - (rowNumber + 1))), + rowNumber + 1)), 1, wxEXPAND | wxALL, 2); m_skylanderSlots[rowNumber] = new wxTextCtrl(box, wxID_ANY, _("None"), wxDefaultPosition, wxDefaultSize,