Skip to content

Commit

Permalink
Modified codes based on reviews-2
Browse files Browse the repository at this point in the history
  • Loading branch information
wonho yun committed Dec 10, 2024
1 parent d7a5392 commit 30fff3a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 38 deletions.
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

6 changes: 4 additions & 2 deletions open_manipulator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
<author email="wsh@robotis.com">Sungho Woo</author>

<buildtool_depend>ament_cmake</buildtool_depend>
<exec_depend>open_manipulator_x_controller</exec_depend>
<exec_depend>open_manipulator_x_bringup</exec_depend>
<exec_depend>open_manipulator_x_description</exec_depend>
<exec_depend>open_manipulator_x_libs</exec_depend>
<exec_depend>open_manipulator_x_gui</exec_depend>
<exec_depend>open_manipulator_x_moveit_config</exec_depend>
<exec_depend>open_manipulator_x_playground</exec_depend>
<exec_depend>open_manipulator_x_teleop</exec_depend>
<export>
<build_type>ament_cmake</build_type>
Expand Down
25 changes: 0 additions & 25 deletions open_manipulator_x.repos

This file was deleted.

5 changes: 4 additions & 1 deletion open_manipulator_x_gui/src/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ namespace open_manipulator_x_gui

std::thread([this, repeatCount]()
{
ui.btn_reset_task->setEnabled(false);
for (int repeat = 0; repeat < repeatCount; ++repeat)
{
if (qnode.isStopRequested())
Expand Down Expand Up @@ -520,7 +521,9 @@ namespace open_manipulator_x_gui
tableWidget->item(row, col)->setBackground(Qt::white);
}
tableWidget->item(row, 5)->setText("Done");
} }, Qt::QueuedConnection); })
}
ui.btn_reset_task->setEnabled(true);
}, Qt::QueuedConnection); })
.detach();
}

Expand Down
6 changes: 3 additions & 3 deletions open_manipulator_x_gui/ui/main_window.ui
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
<item row="4" column="2">
<widget class="QLabel" name="label_39">
<property name="text">
<string>rad</string>
<string>m</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -230,7 +230,7 @@
<enum>Qt::LeftToRight</enum>
</property>
<property name="text">
<string>0.00</string>
<string>0.000</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
Expand Down Expand Up @@ -533,7 +533,7 @@
</size>
</property>
<property name="currentIndex">
<number>2</number>
<number>0</number>
</property>
<widget class="QWidget" name="tab_js">
<property name="enabled">
Expand Down

0 comments on commit 30fff3a

Please sign in to comment.