We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddef66c commit 5b26e5fCopy full SHA for 5b26e5f
Sources/CodeEditSourceEditor/Minimap/MinimapView.swift
@@ -77,7 +77,7 @@ public class MinimapView: FlippedNSView {
77
public init(textView: TextView, theme: EditorTheme) {
78
self.textView = textView
79
self.lineRenderer = MinimapLineRenderer(textView: textView)
80
- let isLightMode = theme.background.brightnessComponent > 0.5
+ let isLightMode = (theme.background.usingColorSpace(.deviceRGB)?.brightnessComponent ?? 0.0) > 0.5
81
82
self.scrollView = ForwardingScrollView()
83
scrollView.translatesAutoresizingMaskIntoConstraints = false
0 commit comments