mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Fixed #1589 (feed/story title doesn't show active highlight until tap-off)
This commit is contained in:
parent
af73ec4458
commit
d2275ca93d
2 changed files with 12 additions and 0 deletions
|
@ -79,6 +79,12 @@ static UIFont *indicatorFont = nil;
|
||||||
[cellContent setNeedsDisplay];
|
[cellContent setNeedsDisplay];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {
|
||||||
|
[super setHighlighted:highlighted animated:animated];
|
||||||
|
|
||||||
|
[self setNeedsDisplay];
|
||||||
|
}
|
||||||
|
|
||||||
- (NSString *)accessibilityLabel {
|
- (NSString *)accessibilityLabel {
|
||||||
NSMutableString *output = [NSMutableString stringWithString:self.siteTitle ?: @"no site"];
|
NSMutableString *output = [NSMutableString stringWithString:self.siteTitle ?: @"no site"];
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,12 @@ static UIFont *textFont = nil;
|
||||||
[cellContent setNeedsDisplay];
|
[cellContent setNeedsDisplay];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {
|
||||||
|
[super setHighlighted:highlighted animated:animated];
|
||||||
|
|
||||||
|
[self setNeedsDisplay];
|
||||||
|
}
|
||||||
|
|
||||||
- (void) setPositiveCount:(int)ps {
|
- (void) setPositiveCount:(int)ps {
|
||||||
if (ps == _positiveCount) return;
|
if (ps == _positiveCount) return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue