mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Quick fix for Bug#9827.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19829 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
eb74dd22f3
commit
a7e80c4de1
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-08-06 07:20 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/GormMenuEditor.m: Added rightMouseDown: method
|
||||
to effectively ignore when the right mouse button is
|
||||
pressed when over a menu that is being edited. This was
|
||||
causing the problem described in Bug#9827.
|
||||
|
||||
2004-08-05 01:36 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/GormNSMenu.m: Added code in the initWithCoder:
|
||||
|
|
|
@ -156,6 +156,11 @@
|
|||
return NO;
|
||||
}
|
||||
|
||||
- (void) rightMouseDown: (NSEvent*)theEvent
|
||||
{
|
||||
// Do nothing. We want to ignore when the right mouse button is pressed.
|
||||
}
|
||||
|
||||
- (void) mouseDown: (NSEvent*)theEvent
|
||||
{
|
||||
NSPoint loc = [theEvent locationInWindow];
|
||||
|
|
Loading…
Reference in a new issue