>>>>> "Bennett" == Bennett Helm <[EMAIL PROTECTED]> writes:
Bennett> On Nov 29, 2006, at 4:07 AM, Jean-Marc Lasgouttes wrote: >>>>>>> "Bennett" == Bennett Helm <[EMAIL PROTECTED]> writes: >> >>>> Thanks. Bennett, does the following patch restore dropping files >>>> on dock? >> Bennett> Yes. >> And double-clicking on lyx file in the finder also works? Bennett> Yes. Good. I looked at the part about menus merging, and I am not very optimistic. First, we have a commented out part of code that reads /*#ifdef Q_WS_MACX // These translations are meant to break Qt/Mac menu merging // algorithm on some entries. It lists the menu names that // should not be moved to the LyX menu QTranslator aqua_trans(0); aqua_trans.insert(QTranslatorMessage("QMenuBar", "Setting", 0, "do_not_merge_me")); aqua_trans.insert(QTranslatorMessage("QMenuBar", "Config", 0, "do_not_merge_me")); aqua_trans.insert(QTranslatorMessage("QMenuBar", "Options", 0, "do_not_merge_me")); aqua_trans.insert(QTranslatorMessage("QMenuBar", "Setup", 0, "do_not_merge_me")); qApp->installTranslator(&aqua_trans); #endif */ This part tries to avoid that things like Document>Settings gets merged to the LyX menu. The problem is that it is not possible anymore to create translations like that. We may or may not be able to create a proper Qt .qm file that provides this feature, I do not know for sure. You say that LyX>Preferences does not work. Are the entries removed from the main menu? I am beginning to wonder whether we should disable all menu merging, as Qt/Mac allows us to do. JMarc