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:
Gregory John Casamento 2004-12-28 17:07:59 +00:00
parent cbffe63197
commit fb898530c6
3 changed files with 12 additions and 0 deletions

View file

@ -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

View file

@ -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;

View file

@ -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;