diff options
| -rw-r--r-- | src/yuzu/configuration/configure_debug.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_debug.h | 4 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_debug.ui | 7 |
3 files changed, 9 insertions, 4 deletions
diff --git a/src/yuzu/configuration/configure_debug.cpp b/src/yuzu/configuration/configure_debug.cpp index e16d127a8..04d397750 100644 --- a/src/yuzu/configuration/configure_debug.cpp +++ b/src/yuzu/configuration/configure_debug.cpp | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include "yuzu/uisettings.h" | 14 | #include "yuzu/uisettings.h" |
| 15 | 15 | ||
| 16 | ConfigureDebug::ConfigureDebug(const Core::System& system_, QWidget* parent) | 16 | ConfigureDebug::ConfigureDebug(const Core::System& system_, QWidget* parent) |
| 17 | : QWidget(parent), ui{std::make_unique<Ui::ConfigureDebug>()}, system{system_} { | 17 | : QScrollArea(parent), ui{std::make_unique<Ui::ConfigureDebug>()}, system{system_} { |
| 18 | ui->setupUi(this); | 18 | ui->setupUi(this); |
| 19 | SetConfiguration(); | 19 | SetConfiguration(); |
| 20 | 20 | ||
diff --git a/src/yuzu/configuration/configure_debug.h b/src/yuzu/configuration/configure_debug.h index 64d68ab8f..42d30f170 100644 --- a/src/yuzu/configuration/configure_debug.h +++ b/src/yuzu/configuration/configure_debug.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include <memory> | 6 | #include <memory> |
| 7 | #include <QWidget> | 7 | #include <QScrollArea> |
| 8 | 8 | ||
| 9 | namespace Core { | 9 | namespace Core { |
| 10 | class System; | 10 | class System; |
| @@ -14,7 +14,7 @@ namespace Ui { | |||
| 14 | class ConfigureDebug; | 14 | class ConfigureDebug; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | class ConfigureDebug : public QWidget { | 17 | class ConfigureDebug : public QScrollArea { |
| 18 | Q_OBJECT | 18 | Q_OBJECT |
| 19 | 19 | ||
| 20 | public: | 20 | public: |
diff --git a/src/yuzu/configuration/configure_debug.ui b/src/yuzu/configuration/configure_debug.ui index 4c16274fc..47b8b80f1 100644 --- a/src/yuzu/configuration/configure_debug.ui +++ b/src/yuzu/configuration/configure_debug.ui | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <ui version="4.0"> | 2 | <ui version="4.0"> |
| 3 | <class>ConfigureDebug</class> | 3 | <class>ConfigureDebug</class> |
| 4 | <widget class="QWidget" name="ConfigureDebug"> | 4 | <widget class="QScrollArea" name="ConfigureDebug"> |
| 5 | <property name="widgetResizable"> | ||
| 6 | <bool>true</bool> | ||
| 7 | </property> | ||
| 8 | <widget class="QWidget"> | ||
| 5 | <layout class="QVBoxLayout" name="verticalLayout_1"> | 9 | <layout class="QVBoxLayout" name="verticalLayout_1"> |
| 6 | <item> | 10 | <item> |
| 7 | <layout class="QVBoxLayout" name="verticalLayout_2"> | 11 | <layout class="QVBoxLayout" name="verticalLayout_2"> |
| @@ -322,6 +326,7 @@ | |||
| 322 | </item> | 326 | </item> |
| 323 | </layout> | 327 | </layout> |
| 324 | </widget> | 328 | </widget> |
| 329 | </widget> | ||
| 325 | <tabstops> | 330 | <tabstops> |
| 326 | <tabstop>log_filter_edit</tabstop> | 331 | <tabstop>log_filter_edit</tabstop> |
| 327 | <tabstop>toggle_console</tabstop> | 332 | <tabstop>toggle_console</tabstop> |