Skip to content

Commit c8045f7

Browse files
authored
UI: wxCAPTION flag on input API dialog to fix kwin (#1586)
1 parent 6df3e17 commit c8045f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/input/InputAPIAddWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ using wxControllerData = wxCustomData<ControllerPtr>;
2323

2424
InputAPIAddWindow::InputAPIAddWindow(wxWindow* parent, const wxPoint& position,
2525
const std::vector<ControllerPtr>& controllers)
26-
: wxDialog(parent, wxID_ANY, "Add input API", position, wxDefaultSize, 0), m_controllers(controllers)
26+
: wxDialog(parent, wxID_ANY, "Add input API", position, wxDefaultSize, wxCAPTION), m_controllers(controllers)
2727
{
2828
this->SetSizeHints(wxDefaultSize, wxDefaultSize);
2929

0 commit comments

Comments
 (0)