sd/source/ui/dlg/tpoption.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit d3e7dd4d4ddc88ba60be6ce5e90a1d1fcde47cca
Author:     Heiko Tietze <tietze.he...@gmail.com>
AuthorDate: Thu Mar 31 17:12:18 2022 +0200
Commit:     Heiko Tietze <heiko.tie...@documentfoundation.org>
CommitDate: Fri Apr 1 07:33:23 2022 +0200

    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.tie...@documentfoundation.org>

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();

Reply via email to