Index: sources/ApplicationController.cpp =================================================================== diff -u -r338575f7f1856c99fbc3c0cb59391fc23601c89b -rf2db5c985e5c0ae7835a69eff43bfc537e6dd2fc --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 338575f7f1856c99fbc3c0cb59391fc23601c89b) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision f2db5c985e5c0ae7835a69eff43bfc537e6dd2fc) @@ -130,6 +130,9 @@ connect(&_GuiController , SIGNAL(didExportLog()), this , SLOT( onExportLog())); + connect(&_GuiController , SIGNAL(didGuiReadyNotify()), + this , SLOT( onGuiReadyNotify())); + connect(&_Logger , SIGNAL(didExportLogs()), this , SLOT( onExport ())); @@ -574,3 +577,11 @@ emit didActionTransmit(GuiActionType::ID_KeepAlive, {}); _post.start(); } + +void ApplicationController::onGuiReadyNotify() +{ + LOG_DEBUG("ApplicationPost Start"); + emit didActionTransmit(GuiActionType::ID_KeepAlive, {}); + _MainTimer.start(); + _post.start(); +}