[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 {
Layout.fillHeight: true
Layout.fillWidth: true
width: root.width
MSplitView {
id: scriptSplitView;
Layout.fillHeight: true;
Layout.fillWidth: true;
orientation: Qt.Horizontal;
// Input Text Area -- Holds the input scripts to be executed
Rectangle {
id: inputArea
Layout.fillHeight: true
Layout.fillWidth: true
SplitView.preferredWidth: root.width / 2;
color: palette.base