summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-17 12:14:25 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-10-01 09:54:03 +0200
commit0f77b8a44e7ee5541c97304d37f0c52cd8275cba (patch)
tree83c42d4a2d097270301b452247d13bdd539d0045 /sfx2
parent90b4308f0a7a38ac2ffdcbbed8d4378daf2f45f1 (diff)
tdf#134598 call FmtSelect to update watercan
Change-Id: Idd88acfdaac66b999b0bcd8cf0a4fe69f7ae6ac5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102926 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/templdlg.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index 03da396a51b5..4ca4b292cfbf 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -868,7 +868,7 @@ void SfxCommonTemplateDialog_Impl::SelectStyle(const OUString &rStr, bool bIsCal
{
mxTreeBox->scroll_to_row(*xEntry);
mxTreeBox->select(*xEntry);
- return;
+ break;
}
bEntry = mxTreeBox->iter_next(*xEntry);
}
@@ -894,7 +894,6 @@ void SfxCommonTemplateDialog_Impl::SelectStyle(const OUString &rStr, bool bIsCal
mxFmtLb->unselect_all();
mxFmtLb->scroll_to_row(*xEntry);
mxFmtLb->select(*xEntry);
- FmtSelect(nullptr, bIsCallback);
}
}
}
@@ -910,6 +909,12 @@ void SfxCommonTemplateDialog_Impl::SelectStyle(const OUString &rStr, bool bIsCal
}
bWaterDisabled = !IsSafeForWaterCan();
+
+ if (!bIsCallback)
+ {
+ // tdf#134598 call FmtSelect to update watercan
+ FmtSelect(nullptr, false);
+ }
}
OUString SfxCommonTemplateDialog_Impl::GetSelectedEntry() const