aboutsummaryrefslogtreecommitdiff
path: root/Flat Bezel
diff options
context:
space:
mode:
Diffstat (limited to 'Flat Bezel')
-rw-r--r--Flat Bezel/BBFlatBezelInterface.m2
-rw-r--r--Flat Bezel/BBObjectCell.m6
2 files changed, 4 insertions, 4 deletions
diff --git a/Flat Bezel/BBFlatBezelInterface.m b/Flat Bezel/BBFlatBezelInterface.m
index e430de8..bac396f 100644
--- a/Flat Bezel/BBFlatBezelInterface.m
+++ b/Flat Bezel/BBFlatBezelInterface.m
@@ -40,7 +40,7 @@
[theCell setBackgroundColor:[NSColor clearColor]];
[theCell setFont:[NSFont systemFontOfSize:11 weight:NSFontWeightLight]];
- [theCell setCellRadiusFactor:8];
+ [theCell setCellRadiusFactor:4];
[theCell setHighlightColor:[NSColor colorWithRed:1 green:1 blue:1 alpha:.15]];
[theCell setTextColor:[NSColor textColor]];
diff --git a/Flat Bezel/BBObjectCell.m b/Flat Bezel/BBObjectCell.m
index 28e79d2..40bde4d 100644
--- a/Flat Bezel/BBObjectCell.m
+++ b/Flat Bezel/BBObjectCell.m
@@ -14,13 +14,13 @@
NSColor *strokeColor = [NSColor clearColor];
if (isFirstResponder) {
- fillColor = [self highlightColor];
+ fillColor = [NSColor selectedTextBackgroundColor];
} else {
- fillColor = [self backgroundColor];
+ fillColor = [NSColor clearColor];
}
if (dropTarget) {
- fillColor = [NSColor colorWithRed:0.77 green:0.91 blue:0.96 alpha:1];
+ fillColor = [NSColor controlAccentColor];
}
[fillColor setFill];