mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 20:50:48 +00:00
Replace the key equivalent when it was set wrongly by Gorm.
Patch by Wolfgang Lux <wolfgang.lux@gmail.com>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27579 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c6f7ceaa0
commit
2bb22d1f9b
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-01-12 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* Source/NSButtonCell.m (-initWithCoder:): Replace the key
|
||||||
|
equivalent when it was set wrongly by Gorm.
|
||||||
|
Patch by Wolfgang Lux <wolfgang.lux@gmail.com>.
|
||||||
|
|
||||||
2009-01-11 20:49-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
2009-01-11 20:49-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
* Source/GSNibLoading.m: Reorganization and simplification of
|
* Source/GSNibLoading.m: Reorganization and simplification of
|
||||||
|
|
|
@ -1764,6 +1764,13 @@ typedef struct _GSButtonCellFlags
|
||||||
_shows_border_only_while_mouse_inside = tmp;
|
_shows_border_only_while_mouse_inside = tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hack to correct a Gorm problem, there "\n" is used instead of "\r".
|
||||||
|
if ([_keyEquivalent isEqualToString: @"\n" ])
|
||||||
|
{
|
||||||
|
[self setKeyEquivalent: @"\r"];
|
||||||
|
}
|
||||||
|
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue