From 90c10d2a16c1a996f5e976201a827e66d38b3e90 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 13 Apr 2025 08:31:41 -0400 Subject: [PATCH] Debug missing console placeholder text. It appears on resizing horizontally --- qml/ClideProjectView.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qml/ClideProjectView.qml b/qml/ClideProjectView.qml index fa1cad5..1f97333 100644 --- a/qml/ClideProjectView.qml +++ b/qml/ClideProjectView.qml @@ -16,6 +16,7 @@ SplitView { // Customized handle to drag between the Navigation and the Editor. handle: Rectangle { + id: verticalSplitHandle border.color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter implicitWidth: 8 @@ -31,10 +32,12 @@ SplitView { Rectangle { id: navigationView + color: RustColors.explorer_background SplitView.fillHeight: true + SplitView.minimumWidth: 0 SplitView.preferredWidth: 200 - color: RustColors.explorer_background + SplitView.maximumWidth: 250 StackLayout { anchors.fill: parent @@ -45,6 +48,7 @@ SplitView { } } ClideEditor { + SplitView.fillWidth: true // Initialize using the Default trait in Rust QML singleton FileSystem. filePath: root.selectedFilePath }