Debug missing console placeholder text.

It appears on resizing horizontally
This commit is contained in:
Shaun Reed 2025-04-13 08:31:41 -04:00
parent 2dcf0529d1
commit 90c10d2a16

View File

@ -16,6 +16,7 @@ SplitView {
// Customized handle to drag between the Navigation and the Editor. // Customized handle to drag between the Navigation and the Editor.
handle: Rectangle { handle: Rectangle {
id: verticalSplitHandle
border.color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter border.color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter
color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter
implicitWidth: 8 implicitWidth: 8
@ -31,10 +32,12 @@ SplitView {
Rectangle { Rectangle {
id: navigationView id: navigationView
color: RustColors.explorer_background
SplitView.fillHeight: true SplitView.fillHeight: true
SplitView.minimumWidth: 0
SplitView.preferredWidth: 200 SplitView.preferredWidth: 200
color: RustColors.explorer_background SplitView.maximumWidth: 250
StackLayout { StackLayout {
anchors.fill: parent anchors.fill: parent
@ -45,6 +48,7 @@ SplitView {
} }
} }
ClideEditor { ClideEditor {
SplitView.fillWidth: true
// Initialize using the Default trait in Rust QML singleton FileSystem. // Initialize using the Default trait in Rust QML singleton FileSystem.
filePath: root.selectedFilePath filePath: root.selectedFilePath
} }