Skip to content
Snippets Groups Projects
Commit d91e2b6b authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Tooltips restored in ComponentEditor

parent 16b3c90c
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "PropertyAttribute.h" #include "PropertyAttribute.h"
#include "SessionItem.h" #include "SessionItem.h"
#include "tooltipdatabase.h"
#include <QDebug> #include <QDebug>
PropertyAttribute::PropertyAttribute(PropertyAttribute::Appearance appearance, PropertyAttribute::PropertyAttribute(PropertyAttribute::Appearance appearance,
...@@ -181,6 +182,14 @@ PropertyAttribute PropertyAttribute::fromItem(SessionItem *item) ...@@ -181,6 +182,14 @@ PropertyAttribute PropertyAttribute::fromItem(SessionItem *item)
attribute.setReadOnly(); attribute.setReadOnly();
if (!item->isEnabled()) if (!item->isEnabled())
attribute.setDisabled(); attribute.setDisabled();
if(attribute.getToolTip().isEmpty()) {
if(SessionItem *parent = item->parent()) {
attribute.setToolTip(ToolTipDataBase::getSampleViewToolTip(
parent->modelType(), item->displayName()));
}
}
return attribute; return attribute;
} }
......
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