aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2017-06-07 17:56:14 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2017-06-07 17:56:14 +1000
commit2abb46176072c6f83767f6cb5c1c95401232c061 (patch)
treec246c1930ed4bc0899e87e626473755352706965
parent7401309e8c5e8caa1e8ce4d1872cb70030fc7f64 (diff)
downloadscintilla-mirror-2abb46176072c6f83767f6cb5c1c95401232c061.tar.gz
Bug as it uses a getter and discards the result instead of a setter.
-rw-r--r--cocoa/InfoBar.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/InfoBar.mm b/cocoa/InfoBar.mm
index 5ca010af8..8c2df550a 100644
--- a/cocoa/InfoBar.mm
+++ b/cocoa/InfoBar.mm
@@ -338,7 +338,7 @@ static float BarFontSize = 10.0;
{
mDisplayMask = display;
[self positionSubViews];
- [self needsDisplay];
+ self.needsDisplay = YES;
}
}