diff --git a/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.cpp b/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.cpp index 0fba47d76eb851d528c306f46d24e17c24661223..12f89e9aff7960b53e39e12bc920f70ea89917a8 100644 --- a/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.cpp +++ b/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.cpp @@ -89,7 +89,7 @@ namespace armarx widget.doubleSpinBoxUpdateFreq->setSuffix(" Hz"); refreshSkillsResultTimer = new QTimer(this); - refreshSkillsResultTimer->setInterval(1000 / 5); // Keep this stable. + refreshSkillsResultTimer->setInterval(1000 / 2); // Keep this stable. refreshSkillsResultTimer->start(); connect(widget.doubleSpinBoxUpdateFreq, @@ -129,15 +129,6 @@ namespace armarx { } - void - SkillManagerMonitorWidgetController::reconnectToSkillManager() - { - if (connected) - { - getProxy(manager, observerName, 1000); - } - } - void SkillManagerMonitorWidgetController::onInitComponent() { @@ -152,6 +143,7 @@ namespace armarx QAbstractItemView::EditTrigger::NoEditTriggers); widget.treeWidgetSkillDetails->setColumnHidden(3, true); + getProxy(manager, observerName, 1000); connected = true; } @@ -191,7 +183,6 @@ namespace armarx if (!manager) { - reconnectToSkillManager(); return; } diff --git a/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.h b/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.h index d9a9379bdfdea0ee56c9c5f3e601ef68a5ce75b5..59fd812aa79732ad2af9d501f84adaf2628fab3a 100644 --- a/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.h +++ b/source/RobotAPI/gui-plugins/SkillManagerPlugin/SkillManagerMonitorWidgetController.h @@ -70,8 +70,6 @@ namespace armarx return "Skills.Manager"; } - void reconnectToSkillManager(); - void onInitComponent() override; void onConnectComponent() override; void onDisconnectComponent() override;