diff options
author | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-09-03 04:39:28 -0700 |
---|---|---|
committer | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-09-03 04:59:01 -0700 |
commit | b1076859c45ba6ef732cbfa0a8ba8e6bebb0b1b5 (patch) | |
tree | b89c8acdd40a8d3e0bf078c93da6f6ccc30cbc57 /src/yuzu/configuration/configure_debug.ui | |
parent | 5addff8d59dbafb96af02319c24e3e162296336d (diff) |
Qt: Make General->Debug scrollable
Configuration -> General -> Debug is getting a bit crowded.
yzct12345 submit this originally, so I'm tagging them as a co-author.
The original #6714 also modifies the Controls -> Player N sections,
but it looks like more work is needed to make the current area scrollable.
Co-authored-by: yzct12345 <87620833+yzct12345@users.noreply.github.com>
Diffstat (limited to 'src/yuzu/configuration/configure_debug.ui')
-rw-r--r-- | src/yuzu/configuration/configure_debug.ui | 7 |
1 files changed, 6 insertions, 1 deletions
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 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ConfigureDebug</class> - <widget class="QWidget" name="ConfigureDebug"> + <widget class="QScrollArea" name="ConfigureDebug"> + <property name="widgetResizable"> + <bool>true</bool> + </property> + <widget class="QWidget"> <layout class="QVBoxLayout" name="verticalLayout_1"> <item> <layout class="QVBoxLayout" name="verticalLayout_2"> @@ -322,6 +326,7 @@ </item> </layout> </widget> + </widget> <tabstops> <tabstop>log_filter_edit</tabstop> <tabstop>toggle_console</tabstop> |