From 44f783fd0faa88aa98d6a6d7971ed211622b7fa2 Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Sun, 30 Sep 2018 11:45:44 +0200 Subject: [PATCH] disabled hightlichting to make the button look like a badge --- MacPass/MPOutlineTableCellView.m | 1 + 1 file changed, 1 insertion(+) diff --git a/MacPass/MPOutlineTableCellView.m b/MacPass/MPOutlineTableCellView.m index ca749cb6..85a35479 100644 --- a/MacPass/MPOutlineTableCellView.m +++ b/MacPass/MPOutlineTableCellView.m @@ -66,6 +66,7 @@ } - (void)_updateCountDisplay { + [((NSButtonCell *)self.countButton.cell) setHighlightsBy:0]; self.countButton.title = [NSString stringWithFormat:@"%ld", _count]; self.countButton.hidden = (self.hideZeroCount && self.count == 0); }