mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Gorm portion of fix for bug#11409.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20499 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
cbffe63197
commit
fb898530c6
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-12-28 12:10 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/1Windows/GormNSPanel.m
|
||||
* Palettes/1Windows/GormNSWindow.m: Initialize the miniaturized
|
||||
window image to nil.
|
||||
|
||||
2004-12-28 08:38 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/0Menus/GormMenuEditor.m: Improvement on previous
|
||||
|
|
|
@ -62,6 +62,9 @@ static unsigned int defaultStyleMask = NSTitledWindowMask | NSClosableWindowMask
|
|||
// Don't release when the window is closed, a window being edited may
|
||||
// be periodically opened and closed.
|
||||
[self setReleasedWhenClosed: NO];
|
||||
|
||||
// remove the default icon...
|
||||
[self setMiniwindowImage: nil];
|
||||
}
|
||||
|
||||
return self;
|
||||
|
|
|
@ -73,6 +73,9 @@ static unsigned int defaultStyleMask = NSTitledWindowMask | NSClosableWindowMask
|
|||
// Don't release when the window is closed, a window being edited may
|
||||
// be periodically opened and closed.
|
||||
[self setReleasedWhenClosed: NO];
|
||||
|
||||
// remove the default icon...
|
||||
[self setMiniwindowImage: nil];
|
||||
}
|
||||
|
||||
return self;
|
||||
|
|
Loading…
Reference in a new issue