mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-10-01 11:40:02 +03:00
misprint has been fixed
This commit is contained in:
@@ -101,7 +101,7 @@ void TextItem::preparePopUpMenu(QMenu &menu)
|
|||||||
action->setCheckable(true);
|
action->setCheckable(true);
|
||||||
action->setChecked(allowHTMLInFields());
|
action->setChecked(allowHTMLInFields());
|
||||||
|
|
||||||
action = menu.addAction(tr("Strethc to max height"));
|
action = menu.addAction(tr("Stretch to max height"));
|
||||||
action->setCheckable(true);
|
action->setCheckable(true);
|
||||||
action->setChecked(stretchToMaxHeight());
|
action->setChecked(stretchToMaxHeight());
|
||||||
|
|
||||||
@@ -121,7 +121,7 @@ void TextItem::processPopUpAction(QAction *action)
|
|||||||
if (action->text().compare(tr("Allow HTML in fields")) == 0){
|
if (action->text().compare(tr("Allow HTML in fields")) == 0){
|
||||||
setProperty("allowHTMLInFields",action->isChecked());
|
setProperty("allowHTMLInFields",action->isChecked());
|
||||||
}
|
}
|
||||||
if (action->text().compare(tr("Strethc to max height")) == 0){
|
if (action->text().compare(tr("Stretch to max height")) == 0){
|
||||||
setProperty("stretchToMaxHeight",action->isChecked());
|
setProperty("stretchToMaxHeight",action->isChecked());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user