interface update
This commit is contained in:
parent
c47d8e5c77
commit
9473b645cc
|
@ -23,7 +23,7 @@ ActionNodeConfiguration::ActionNodeConfiguration(QWidget* p)
|
|||
auto new_inst = std::dynamic_pointer_cast<ExecuteDelegate>(inst->newDefault());
|
||||
_current_node->bindDelegate(new_inst);
|
||||
|
||||
_current_present->itemUpdate();
|
||||
_current_present->dataHasBeenUpdate();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ std::shared_ptr<LogicalNode> NodePresent::logicalBind() const
|
|||
return _node_bind;
|
||||
}
|
||||
|
||||
void NodePresent::itemUpdate()
|
||||
void NodePresent::dataHasBeenUpdate()
|
||||
{
|
||||
this->prepareGeometryChange();
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
/// </summary>
|
||||
/// <returns></returns>
|
||||
std::shared_ptr<LogicalNode> logicalBind() const;
|
||||
void itemUpdate();
|
||||
void dataHasBeenUpdate();
|
||||
|
||||
QRectF contentMeasure() const;
|
||||
AcceptType testAccept(const QPointF& local_pos, const QString& kind_str) const;
|
||||
|
|
Loading…
Reference in New Issue