Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/gui/input/InputAPIAddWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,12 @@ void InputAPIAddWindow::on_controllers_refreshed(wxCommandEvent& event)

wxWindowUpdateLocker lock(controllers);
controllers->Clear();
#if BOOST_OS_LINUX
// We add a placeholder to make to list clickable on linux
// This allows the user to trigger a refill of the controller list
if (has_custom_settings() && available_controllers.empty())
m_controller_list->Append(_("No controllers found."), (wxClientData*)nullptr);
#endif
for (const auto& c : available_controllers)
{
const auto display_name = c->display_name();
Expand Down