From 6459d880c3c01b9bfe0db0f8b78adddd83113774 Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 2 Feb 2026 13:39:47 -0600 Subject: [PATCH] update Print with events --- modules/Archimedes-Modules/Print/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Archimedes-Modules/Print/Print.cpp b/modules/Archimedes-Modules/Print/Print.cpp index f988706..3d491cc 100644 --- a/modules/Archimedes-Modules/Print/Print.cpp +++ b/modules/Archimedes-Modules/Print/Print.cpp @@ -13,5 +13,5 @@ Print::~Print() { void Print::run() { std::cout << "Print lib loaded and run!\n"; - app->stopModule(name); + app->emitEvent(new Archimedes::DoUnloadModuleEvent(name)); }