mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Improved fix for bringing all windows to front.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19237 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c68cb685cd
commit
f7811cbfdb
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-05-02 22:18 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: [Gorm unhide:] improvement over previous fix to bring
|
||||
all things to front. The code now toggles the active status of
|
||||
the document to cause all of the windows of the document to come
|
||||
to the front when the icon is clicked.
|
||||
|
||||
2004-05-02 18:35 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormImageEditor.m: Added code to allow it to resize the cells
|
||||
|
|
2
Gorm.m
2
Gorm.m
|
@ -1495,6 +1495,8 @@ NSString *GormResizeCellNotification = @"GormResizeCellNotification";
|
|||
id window = [document window];
|
||||
|
||||
[super unhide: sender];
|
||||
[(GormDocument *)document setDocumentActive: NO];
|
||||
[(GormDocument *)document setDocumentActive: YES];
|
||||
[window orderFront: sender];
|
||||
}
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue