summaryrefslogtreecommitdiff
path: root/Userland/DevTools/SQLStudio/SQLStudio.gml
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-12-31 11:04:13 -0500
committerAndreas Kling <kling@serenityos.org>2023-02-03 20:34:45 +0100
commit4fe437b4d2fe287a20fba0dac846396f08e82ef4 (patch)
tree6651a3d3f558cfbbe709285a2a5598952de69e08 /Userland/DevTools/SQLStudio/SQLStudio.gml
parentcb06031180549014e1c2c0a8708e53d4dc4d9b23 (diff)
downloadserenity-4fe437b4d2fe287a20fba0dac846396f08e82ef4.zip
SQLStudio: Separate the script and results tabs with a vertical splitter
Diffstat (limited to 'Userland/DevTools/SQLStudio/SQLStudio.gml')
-rw-r--r--Userland/DevTools/SQLStudio/SQLStudio.gml20
1 files changed, 11 insertions, 9 deletions
diff --git a/Userland/DevTools/SQLStudio/SQLStudio.gml b/Userland/DevTools/SQLStudio/SQLStudio.gml
index 7de474a8d7..c08bffe0d7 100644
--- a/Userland/DevTools/SQLStudio/SQLStudio.gml
+++ b/Userland/DevTools/SQLStudio/SQLStudio.gml
@@ -8,16 +8,18 @@
}
}
- @GUI::TabWidget {
- name: "script_tab_widget"
- reorder_allowed: true
- show_close_buttons: true
- }
+ @GUI::VerticalSplitter {
+ @GUI::TabWidget {
+ name: "script_tab_widget"
+ reorder_allowed: true
+ show_close_buttons: true
+ }
- @GUI::TabWidget {
- name: "action_tab_widget"
- show_close_buttons: true
- fixed_height: 0
+ @GUI::TabWidget {
+ name: "action_tab_widget"
+ show_close_buttons: true
+ visible: false
+ }
}
@GUI::Statusbar {