From c9cb35bebabd312be18dd0f6e23b9813865e875e Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Sun, 15 Aug 2010 20:38:07 +0000 Subject: [PATCH] Make the spell panel a utility window like the font and color panels. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31159 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 3 +++ Source/NSSpellChecker.m | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3a87e3bb4..268a871cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2010-08-15 Wolfgang Lux + * Source/NSSpellChecker.m (-awakeFromNib): Make the spell panel a + utility window like the font and color panels. + * Source/NSPopUpButtonCell.m (-selectItem): Fix bug caused by the fix for #30025, which made it impossible to programmatically change the selected item of some pop up buttons. diff --git a/Source/NSSpellChecker.m b/Source/NSSpellChecker.m index 3f970e564..f01e6be3f 100644 --- a/Source/NSSpellChecker.m +++ b/Source/NSSpellChecker.m @@ -698,6 +698,7 @@ inSpellDocumentWithTag:(int)tag [_correctButton setAlternateImage: [NSImage imageNamed: @"common_retH"]]; [_spellPanel makeFirstResponder: _correctButton]; [_spellPanel setBecomesKeyOnlyIfNeeded: YES]; + [_spellPanel setFloatingPanel: YES]; } @end