Fix hidden click handles on Templates

- on some Templates, the green click handles for
  editing text were being painted under the Template
  and were not visible.
This commit is contained in:
WandererFan
2018-02-07 08:38:33 -05:00
committed by wmayer
parent d3bc866a96
commit 0a7340b9e9
2 changed files with 9 additions and 4 deletions

View File

@@ -40,7 +40,9 @@ TemplateTextField::TemplateTextField(QGraphicsItem *parent,
: QGraphicsRectItem(parent),
tmplte(myTmplte),
fieldNameStr(myFieldName)
{ }
{
setToolTip(QObject::tr("Click to update text"));
}
void TemplateTextField::mousePressEvent(QGraphicsSceneMouseEvent *event)
{