diff --git a/ChangeLog b/ChangeLog index dacaedeba..02c230b82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2010-02-20 Wolfgang Lux + + * Source/NSSpellChecker.m (-awakeFromNib): Set + becomesKeyOnlyIfNeeded panel attribute to YES. + * Panels/English.lproj/GSSpellPanel.gorm: + * Panels/Spanish.lproj/GSSpellPanel.gorm: Fix attribute settings + for the guess list browser: There is just one column, the browser + therefore needs no horizontal scroller, and it makes no sense to + enable multiple selection (which in addition would prevent the + browser from working when the spell panel is not key). + 2010-02-20 Wolfgang Lux * Source/NSColorPanel.m (-_initWithoutGModel): diff --git a/Panels/English.lproj/GSSpellPanel.gorm/objects.gorm b/Panels/English.lproj/GSSpellPanel.gorm/objects.gorm index 6e89ab961..54eee84b3 100644 Binary files a/Panels/English.lproj/GSSpellPanel.gorm/objects.gorm and b/Panels/English.lproj/GSSpellPanel.gorm/objects.gorm differ diff --git a/Panels/Spanish.lproj/GSSpellPanel.gorm/objects.gorm b/Panels/Spanish.lproj/GSSpellPanel.gorm/objects.gorm index f4de1a2c2..de327bc28 100644 Binary files a/Panels/Spanish.lproj/GSSpellPanel.gorm/objects.gorm and b/Panels/Spanish.lproj/GSSpellPanel.gorm/objects.gorm differ diff --git a/Source/NSSpellChecker.m b/Source/NSSpellChecker.m index 9769a0309..03dd6a019 100644 --- a/Source/NSSpellChecker.m +++ b/Source/NSSpellChecker.m @@ -690,6 +690,7 @@ inSpellDocumentWithTag:(int)tag [_correctButton setImage: [NSImage imageNamed: @"common_ret"]]; [_correctButton setAlternateImage: [NSImage imageNamed: @"common_retH"]]; [_spellPanel makeFirstResponder: _correctButton]; + [_spellPanel setBecomesKeyOnlyIfNeeded: YES]; } @end