[ui] ScriptEditor: Updated to Use Horizontal MSplitView

This commit is contained in:
waaake 2025-01-10 08:18:43 +01:00
parent 1b963ab1f2
commit 7384db89e3

View file

@ -239,16 +239,16 @@ Item {
} }
} }
RowLayout { MSplitView {
Layout.fillHeight: true id: scriptSplitView;
Layout.fillWidth: true Layout.fillHeight: true;
width: root.width Layout.fillWidth: true;
orientation: Qt.Horizontal;
// Input Text Area -- Holds the input scripts to be executed // Input Text Area -- Holds the input scripts to be executed
Rectangle { Rectangle {
id: inputArea id: inputArea
Layout.fillHeight: true SplitView.preferredWidth: root.width / 2;
Layout.fillWidth: true
color: palette.base color: palette.base