mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 22:10:58 +00:00
Fix incorrect assignment in NSProgressIndicator -setDisplayedWhenStopped:
which made that method a no-op. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29266 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
60ef6c97a0
commit
31586c0e6f
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-01-11 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||||
|
|
||||||
|
* Source/NSProgressIndicator.m (-setDisplayedWhenStopped): Fix
|
||||||
|
incorrect assignment which made this method a no-op.
|
||||||
|
|
||||||
2010-01-11 Fred Kiefer <FredKiefer@gmx.de>
|
2010-01-11 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Resources/Italian.lproj/Localizable.strings: Regenerate this
|
* Resources/Italian.lproj/Localizable.strings: Regenerate this
|
||||||
|
@ -18,7 +23,7 @@
|
||||||
* Source/NSAttributedString.m (-fixAttachmentAttributeInRange:):
|
* Source/NSAttributedString.m (-fixAttachmentAttributeInRange:):
|
||||||
Keep the local copy of string up to date.
|
Keep the local copy of string up to date.
|
||||||
|
|
||||||
2010-01-09 Wolfgang Lux <wolfgang.lux@mail.com>
|
2010-01-09 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||||
|
|
||||||
* Source/NSTextView.m (-performDragOperation:): Fix a bug that
|
* Source/NSTextView.m (-performDragOperation:): Fix a bug that
|
||||||
prevented changing the color of the selected text of a text view
|
prevented changing the color of the selected text of a text view
|
||||||
|
|
|
@ -276,8 +276,11 @@
|
||||||
|
|
||||||
- (void) setDisplayedWhenStopped: (BOOL)flag
|
- (void) setDisplayedWhenStopped: (BOOL)flag
|
||||||
{
|
{
|
||||||
_isDisplayedWhenStopped = _isDisplayedWhenStopped;
|
if (flag != _isDisplayedWhenStopped)
|
||||||
[self setNeedsDisplay: YES];
|
{
|
||||||
|
_isDisplayedWhenStopped = flag;
|
||||||
|
[self setNeedsDisplay: YES];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSProgressIndicatorStyle) style
|
- (NSProgressIndicatorStyle) style
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue