Move the Tramontana menu from P&R to Tools.

This commit is contained in:
Jean-Paul Chaput 2023-03-28 16:09:00 +02:00
parent e968a5088f
commit 6361ad4ca0
1 changed files with 2 additions and 2 deletions

View File

@ -178,12 +178,12 @@ namespace Tramontana {
_viewer = viewer;
if (_viewer->hasMenuAction("placeAndRoute.extract")) {
if (_viewer->hasMenuAction("tools.extract")) {
cerr << Warning( "GraphicTramontanaEngine::addToMenu() - Tramontana extractor already hooked in." ) << endl;
return;
}
_viewer->addToMenu( "placeAndRoute.extract"
_viewer->addToMenu( "tools.extract"
, "E&xtract . . . . . [Tramontana]"
, "Run the extractor"
, std::bind(&GraphicTramontanaEngine::_extract,this)