You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
634 B
21 lines
634 B
3 years ago
|
import FreeCADGui as Gui
|
||
|
import FreeCAD as App
|
||
|
|
||
|
class AHB_Reload:
|
||
|
def GetResources(self):
|
||
|
return {"MenuText": "[dev] Reload workbench",
|
||
|
"ToolTip": "Reload the workbench without restarting FreeCAD (development tool)",
|
||
|
"Pixmap": ""
|
||
|
}
|
||
|
|
||
|
def IsActive(self):
|
||
|
return True
|
||
|
|
||
|
def Activated(self):
|
||
|
print("Reloading AssemblyHandbookWorkbench")
|
||
|
workbench = Gui.getWorkbench("AssemblyHandbookWorkbench")
|
||
|
workbench.reload()
|
||
|
|
||
|
from ahb_command import AHB_CommandWrapper
|
||
|
AHB_CommandWrapper.addGuiCommand('AHB_reload', AHB_Reload())
|