This commit is contained in:
2026-02-07 21:30:26 -05:00
parent f918d65888
commit a63acb18fc
4 changed files with 4 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ MenuBar {
// Background for this MenuBar.
background: Rectangle {
color: RustColors.menubar
radius: 20.0
}
//

View File

@@ -44,6 +44,7 @@ SplitView {
SplitView.minimumWidth: 0
SplitView.preferredWidth: 200
color: RustColors.explorer_background
radius: 20
ColumnLayout {
spacing: 2

View File

@@ -16,7 +16,7 @@ Rectangle {
} else if (hovered) {
return RustColors.hovered;
} else {
return RustColors.gutter;
return "black";
}
}
required property bool hovered

View File

@@ -107,7 +107,7 @@ impl qobject::FileSystem {
append_highlighted_html_for_styled_line(
&regions[..],
IncludeBackground::Yes,
IncludeBackground::No,
&mut output,
)
.expect("Failed to insert highlighted html");