mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
* 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:
parent
f0429f9b63
commit
4bc5ea7ede
2 changed files with 8 additions and 1 deletions
|
@ -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>
|
2012-03-17 German A. Arias <german@xelalug.org>
|
||||||
|
|
||||||
* Gorm.m: Added method -applicationShouldTerminateAfterLastWindowClosed:
|
* Gorm.m: Added method -applicationShouldTerminateAfterLastWindowClosed:
|
||||||
|
|
|
@ -564,7 +564,7 @@ static BOOL done_editing;
|
||||||
{
|
{
|
||||||
frame = gpi->lastFrame;
|
frame = gpi->lastFrame;
|
||||||
|
|
||||||
if ([theEvent modifierFlags] & NSAlternateKeyMask)
|
if ([theEvent modifierFlags] & (NSControlKeyMask | NSShiftKeyMask))
|
||||||
{
|
{
|
||||||
int rows = [_EO numberOfRows];
|
int rows = [_EO numberOfRows];
|
||||||
int cols = [_EO numberOfColumns];
|
int cols = [_EO numberOfColumns];
|
||||||
|
|
Loading…
Reference in a new issue