diff --git a/src/duckstation-qt/controllersettingswindow.cpp b/src/duckstation-qt/controllersettingswindow.cpp index 5d3390602..84f214e3d 100644 --- a/src/duckstation-qt/controllersettingswindow.cpp +++ b/src/duckstation-qt/controllersettingswindow.cpp @@ -19,7 +19,6 @@ #include "common/file_system.h" #include -#include #include #include "moc_controllersettingswindow.cpp" diff --git a/src/duckstation-qt/qtthemes.cpp b/src/duckstation-qt/qtthemes.cpp index 5a47dd5d8..1a90ef01d 100644 --- a/src/duckstation-qt/qtthemes.cpp +++ b/src/duckstation-qt/qtthemes.cpp @@ -392,7 +392,11 @@ QString QtHost::GetNativeThemeStylesheet() #ifdef __APPLE__ // Qt's native style on MacOS is... not great. // We re-theme the tool buttons to look like Cocoa tool buttons, and fix up popup menus. + // We also need to restore the native focus frame on QLineEdit, since it is disabled by setting a stylesheet. ret = R"( +QLineEdit { + border-style: native; +} QMenu { border-radius: 10px; padding: 4px 0;