Start: Migrate to simple command

This commit is contained in:
Chris Hennes
2024-04-09 10:56:35 -05:00
parent 820b16ef6b
commit f68c2de569
19 changed files with 51 additions and 275 deletions

View File

@@ -32,7 +32,7 @@
#include <3rdParty/GSL/include/gsl/pointers>
#include "Workbench.h"
#include "Manipulator.h"
void loadStartResource()
{
@@ -73,7 +73,8 @@ PyMOD_INIT_FUNC(StartGui)
{
Base::Console().Log("Loading GUI of Start module... ");
PyObject* mod = StartGui::initModule();
StartGui::Workbench::init();
auto manipulator = std::make_shared<StartGui::Manipulator>();
Gui::WorkbenchManipulator::installManipulator(manipulator);
loadStartResource();
Base::Console().Log("done\n");