Re: [Audacity-devel] Menu quirk ?
A free multi-track audio editor and recorder
Brought to you by:
aosiniao
|
From: Dominic M. <do...@au...> - 2005-11-04 03:32:03
|
On Nov 3, 2005, at 6:30 PM, Vaughan Johnson wrote:
> No, the problem was in my system, somehow. I cleaned it all out, re-
> installed wxWidgets and HEAD, and am now back in working order. And
> from CVS, it looks like the patch never made it to HEAD. So, not
> having the patch, I just manually made those adjustments, so it's
> now Edit > Preferences and Analyze > Plot Spectrum.
I haven't checked to see if this was already done correctly, but just
as a reminder:
On Mac OS X, certain menu items go in "special" menus: Preferences,
Exit (Quit), and About Audacity. wx is actually smart enough to move
those to the special menus automatically - however, if you're not
careful you will end up with double-separators. So you should see
something like this - I know this is just pseudocode, but just to
give you an idea:
editMenu->Add("Something");
editMenu->AddSeparator();
editMenu->Add("Preferences"); // Automatically gets moved to a
different menu in Mac OS X
#ifndef __MACOSX__
editMenu->AddSeparator(); // Only add separator if we're not Mac OS X
#endif
- Dominic
|