diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2017-06-07 17:56:14 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2017-06-07 17:56:14 +1000 |
commit | 2abb46176072c6f83767f6cb5c1c95401232c061 (patch) | |
tree | c246c1930ed4bc0899e87e626473755352706965 | |
parent | 7401309e8c5e8caa1e8ce4d1872cb70030fc7f64 (diff) | |
download | scintilla-mirror-2abb46176072c6f83767f6cb5c1c95401232c061.tar.gz |
Bug as it uses a getter and discards the result instead of a setter.
-rw-r--r-- | cocoa/InfoBar.mm | 2 |
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; } } |