* GormCore/GormMatrixEditor.m: Change modifier to Ctrl+Shift since

these two keys are never remapped and Alt does not always exist
	on european and some US keyboards.   This change should address
	bug#36096.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@35028 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2012-04-05 18:40:59 +00:00
parent f0429f9b63
commit 4bc5ea7ede
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2012-04-05 14:38-EDT Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormMatrixEditor.m: Change modifier to Ctrl+Shift since
these two keys are never remapped and Alt does not always exist
on european and some US keyboards. This change should address
bug#36096.
2012-03-17 German A. Arias <german@xelalug.org>
* Gorm.m: Added method -applicationShouldTerminateAfterLastWindowClosed:

View file

@ -564,7 +564,7 @@ static BOOL done_editing;
{
frame = gpi->lastFrame;
if ([theEvent modifierFlags] & NSAlternateKeyMask)
if ([theEvent modifierFlags] & (NSControlKeyMask | NSShiftKeyMask))
{
int rows = [_EO numberOfRows];
int cols = [_EO numberOfColumns];