You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am using your GUI, and noticed a thing. When joints are less than 8, one column is used (ca51808).
Have you tested this thing? On my "fork" the result is this:
By the way, I am not sure if this is caused by my modifications, or it is a problem that also robot_monitoring has
The text was updated successfully, but these errors were encountered:
could be useful to remove the columns if they are empty:
//remove layout if it is empty to handle better the spaceif (bars_layout_center->count() == 0) {
bars_layout_center->setParent(nullptr);
auto line = findChild<QWidget *>("line_2");
line->setVisible(false);
}
if (bars_layout_right->count() == 0) {
bars_layout_right->setParent(nullptr);
auto line = findChild<QWidget *>("line");
line->setVisible(false);
}
Hi, I am using your GUI, and noticed a thing. When joints are less than 8, one column is used (ca51808).
Have you tested this thing? On my "fork" the result is this:
By the way, I am not sure if this is caused by my modifications, or it is a problem that also robot_monitoring has
The text was updated successfully, but these errors were encountered: