Skip to content
Snippets Groups Projects
Commit 13acfcab authored by alissa's avatar alissa
Browse files

Added hasValueChanged method to Vector3Widget

parent b522ed3c
No related branches found
No related tags found
1 merge request!68Added hasValueChanged method to Vector3Widget
......@@ -58,6 +58,11 @@ namespace armarx::RemoteGui::Client
z.setDecimals(decimals);
}
bool Vector3Widget::hasValueChanged() const
{
return x.hasValueChanged() || y.hasValueChanged() || z.hasValueChanged();
}
PoseWidget::PoseWidget()
{
addChildren(
......
......@@ -25,6 +25,8 @@ namespace armarx::RemoteGui::Client
void setSteps(int steps);
void setDecimals(int decimals);
bool hasValueChanged() const;
};
struct PoseWidget : HBoxLayout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment