summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorHeiko Tietze <tietze.heiko@gmail.com>2022-03-31 17:12:18 +0200
committerHeiko Tietze <heiko.tietze@documentfoundation.org>2022-04-01 07:33:23 +0200
commitd3e7dd4d4ddc88ba60be6ce5e90a1d1fcde47cca (patch)
treebc2ed571db76386b2973a5869f13566ffc960bf3 /sd
parentfb4cf97f3d6a1efc3b3914067ebff304bb45ccf1 (diff)
Resolves tdf#148292 - Keep UI static for Impress' general options
Right frame changes left position depending on unit's spinedit Added an arbitrary width request to make the UI static Change-Id: Ibb9033627bdd0d73108862d5e48683935eab0fdf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132364 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/tpoption.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index 6666cbb4a1b3..28f7fff49bb8 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -215,7 +215,8 @@ SdTpOptionsMisc::SdTpOptionsMisc(weld::Container* pPage, weld::DialogController*
eFUnit = SfxModule::GetCurrentFieldUnit();
SetFieldUnit( *m_xMtrFldTabstop , eFUnit );
-
+ // tdf#148292 - avoid right frame to change position depending on width of this control
+ m_xMtrFldTabstop->set_size_request(150, -1);
// Impress is default mode, let' hide the entire scale frame etc.
m_xCbxDistort->hide();
m_xScaleFrame->hide();