Created attachment 192 [details] Wrong File menu position If in a qt session i use /gui/addMenu command then menu File is always at the last position (see attached image): this happens for all examples shipped with Geant4 sources that support Qt UI. What's wrong: G4UIQt::AddMenu() use fMainWindow->menuBar()->insertMenu(fMainWindow->menuBar()->actions().last(),fileMenu); This will always insert new menu items just before the last one (normally File), not behind the last item! Solution: Use fMainWindow->menuBar()->addMenu(fileMenu); instead. This fixes the issue. Cheers, Alexey.
Fixed in Geant4.9.6