diff options
author | mitchell <unknown> | 2018-03-13 17:41:36 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-03-13 17:41:36 -0400 |
commit | c7cdbd318695ccc5bd4e69dc0787d8c9d2b6886d (patch) | |
tree | 604afa2bbce3ba0374e8561dee39ada862a530c8 | |
parent | 519b7328b66c4c84f03893a31e4be5ba6b1395f2 (diff) | |
download | scintilla-mirror-c7cdbd318695ccc5bd4e69dc0787d8c9d2b6886d.tar.gz |
Backport: Bug as it uses a getter and discards the result instead of a setter.
Backport of changeset 6293:fdca97e72d4e.
-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 945d3515e..9f8b37d74 100644 --- a/cocoa/InfoBar.mm +++ b/cocoa/InfoBar.mm @@ -346,7 +346,7 @@ static float BarFontSize = 10.0; { mDisplayMask = display; [self positionSubViews]; - [self needsDisplay]; + [self setNeedsDisplay: YES]; } } |