|
@@ -75,7 +75,8 @@ class KMTableRowView: NSTableRowView {
|
|
|
override func drawSelection(in dirtyRect: NSRect) {
|
|
|
if selectionBackgroundColorBlock == nil {
|
|
|
let selectionRect = NSRect(x: selectionInset.left, y: selectionInset.top, width: NSWidth(bounds) - selectionInset.left - selectionInset.right, height: NSHeight(bounds) - selectionInset.top - selectionInset.bottom)
|
|
|
- NSColor.lightGray.setFill()
|
|
|
+// NSColor.lightGray.setFill()
|
|
|
+ KMAppearance.Status.selColor().setFill()
|
|
|
let selectionPath = NSBezierPath(roundedRect: selectionRect, xRadius: selectionRadius, yRadius: selectionRadius)
|
|
|
selectionPath.fill()
|
|
|
return
|