[fbcocoa] Re: [fbcocoa] Application Shell Demo with Working Menus

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : May 2012 : Group Archive : Group : All Groups

From: Ken Shmidheiser <kshmidheiser@...>
Date: Tue, 15 May 2012 04:26:20 -0400
Bernie came to the rescue:

> Uncomment your undo, redo items:
> 	[editMenu addItemWithTitle: @"Undo" action: @selector(undo:) keyEquivalent: @"z"];
> 	[editMenu addItemWithTitle: @"Redo" action: @selector(redo:) keyEquivalent: @"Z"];
> 	[editMenu addItem: [NSMenuItem separatorItem]];
> 
> plus:
> 	[txtView setAllowsUndo:YES];

Bernie,

Works a treat! Thanks.

Ken