mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
followTo has been fixed
This commit is contained in:
parent
0261a11b30
commit
f927f3a83c
@ -233,7 +233,7 @@ void TextItem::setContent(const QString &value)
|
||||
// }
|
||||
|
||||
if (!isLoading()){
|
||||
if (autoHeight() || autoWidth())
|
||||
if (autoHeight() || autoWidth() || hasFollower())
|
||||
initTextSizes();
|
||||
update(rect());
|
||||
notify("content",oldValue,value);
|
||||
@ -245,7 +245,7 @@ void TextItem::updateItemSize(DataSourceManager* dataManager, RenderPass pass, i
|
||||
{
|
||||
if (isNeedExpandContent())
|
||||
expandContent(dataManager, pass);
|
||||
if (!isLoading() && (autoHeight() || autoWidth()) )
|
||||
if (!isLoading() && (autoHeight() || autoWidth() || hasFollower()) )
|
||||
initTextSizes();
|
||||
|
||||
if (m_textSize.width()>width() && ((m_autoWidth==MaxWordLength)||(m_autoWidth==MaxStringLength))){
|
||||
@ -547,7 +547,7 @@ void TextItem::clearFollower()
|
||||
m_follower = 0;
|
||||
}
|
||||
|
||||
bool TextItem::hasFollower()
|
||||
bool TextItem::hasFollower() const
|
||||
{
|
||||
return m_follower != 0;
|
||||
}
|
||||
@ -645,7 +645,7 @@ bool TextItem::isNeedUpdateSize(RenderPass pass) const
|
||||
{
|
||||
Q_UNUSED(pass)
|
||||
|
||||
if (autoHeight() && autoWidth()){
|
||||
if (autoHeight() && autoWidth() || hasFollower()){
|
||||
initTextSizes();
|
||||
}
|
||||
|
||||
|
@ -150,8 +150,8 @@ public:
|
||||
void setFollowTo(const QString &followTo);
|
||||
void setFollower(TextItem* follower);
|
||||
void clearFollower();
|
||||
bool hasFollower();
|
||||
TextItem* follower(){ return m_follower;}
|
||||
bool hasFollower() const;
|
||||
TextItem* follower() const { return m_follower;}
|
||||
bool initFollower(QString follower);
|
||||
|
||||
// IPageInit interface
|
||||
|
Loading…
Reference in New Issue
Block a user