Ensure Tools->External plugins is populated
Since the commit e8b11c911e
, the menu tools->external plugins is empty.
This is because on new system, an added submenu is cloned when added. So any update on the object
after Add it as no effect. The menu stay empty.
With this commit the menu filling is made before adding submenu.
This commit is contained in:
parent
fc1665ff28
commit
d6322dcf0d
|
@ -418,6 +418,9 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
|||
ID_TOOLBARH_PCB_ACTION_PLUGIN_SHOW_FOLDER,
|
||||
folder_xpm );
|
||||
#endif
|
||||
// Populate the Action Plugin sub-menu: Must be done before Add
|
||||
// Since the object is cloned by Add
|
||||
buildActionPluginMenus( submenuActionPlugins );
|
||||
submenuActionPlugins->AppendSeparator();
|
||||
|
||||
toolsMenu->AppendSeparator();
|
||||
|
@ -468,8 +471,4 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
|||
SetMenuBar( menuBar );
|
||||
delete oldMenuBar;
|
||||
|
||||
#if defined(KICAD_SCRIPTING) && defined(KICAD_SCRIPTING_ACTION_MENU)
|
||||
// Populate the Action Plugin sub-menu
|
||||
buildActionPluginMenus( submenuActionPlugins );
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue