diff --git a/qml/ClideMenuBar.qml b/qml/ClideMenuBar.qml index cfd9518..b3b8c35 100644 --- a/qml/ClideMenuBar.qml +++ b/qml/ClideMenuBar.qml @@ -11,6 +11,7 @@ MenuBar { // Background for this MenuBar. background: Rectangle { color: RustColors.menubar + radius: 20.0 } // diff --git a/qml/ClideProjectView.qml b/qml/ClideProjectView.qml index 00d1170..34d0c8e 100644 --- a/qml/ClideProjectView.qml +++ b/qml/ClideProjectView.qml @@ -44,6 +44,7 @@ SplitView { SplitView.minimumWidth: 0 SplitView.preferredWidth: 200 color: RustColors.explorer_background + radius: 20 ColumnLayout { spacing: 2 diff --git a/qml/Components/ClideHandle.qml b/qml/Components/ClideHandle.qml index eb1bd36..182e7be 100644 --- a/qml/Components/ClideHandle.qml +++ b/qml/Components/ClideHandle.qml @@ -16,7 +16,7 @@ Rectangle { } else if (hovered) { return RustColors.hovered; } else { - return RustColors.gutter; + return "black"; } } required property bool hovered diff --git a/src/gui/filesystem.rs b/src/gui/filesystem.rs index ea33c62..ac37908 100644 --- a/src/gui/filesystem.rs +++ b/src/gui/filesystem.rs @@ -107,7 +107,7 @@ impl qobject::FileSystem { append_highlighted_html_for_styled_line( ®ions[..], - IncludeBackground::Yes, + IncludeBackground::No, &mut output, ) .expect("Failed to insert highlighted html");