mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
Add a recursion break hack. Needs to be cleaned up.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26249 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5b5d5ba64a
commit
b76f1b348c
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-08 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSToolbarItem.m (GSToolbarButton-sendAction:to:):
|
||||
Add a recursion break hack. Needs to be cleaned up.
|
||||
|
||||
2008-03-08 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSOutlineView.m (-_initOutlineDefaults): New helper
|
||||
|
|
|
@ -358,6 +358,9 @@ NSString *GSMovableToolbarItemPboardType = @"GSMovableToolbarItemPboardType";
|
|||
|
||||
- (BOOL) sendAction: (SEL)action to: (id)target
|
||||
{
|
||||
if (!action)
|
||||
return NO;
|
||||
|
||||
if ([_toolbarItem _selectable])
|
||||
{
|
||||
[[_toolbarItem toolbar]
|
||||
|
|
Loading…
Reference in a new issue