From dd89c68edf7f022e1c96d0cc9e7e13cde042dd4b Mon Sep 17 00:00:00 2001 From: Muhammet Kara Date: Mon, 5 Dec 2016 11:54:02 +0300 Subject: [PATCH] Do not enable radio buttons of image flip on create On the Image tab of the Image Properties dialog, The radio buttons under the horizontal flip option should come disabled when that option is not checked. Wrong order of "Enable" calls was causing them to be enabled on create, all the time. Change-Id: Ie361a8280e2a303d38025c5c684f5c07ba2e1ef9 Reviewed-on: https://gerrit.libreoffice.org/31619 Tested-by: Jenkins Reviewed-by: Muhammet Kara --- sw/source/ui/frmdlg/frmpage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx index 9f40d88f5686..c4ae80ab71a3 100644 --- a/sw/source/ui/frmdlg/frmpage.cxx +++ b/sw/source/ui/frmdlg/frmpage.cxx @@ -2506,10 +2506,10 @@ void SwGrfExtPage::ActivatePage(const SfxItemSet& rSet) m_pBmpWin->SetGraphic( *pGrf ); } + m_pMirror->Enable(bEnable); m_pAllPagesRB->Enable(bEnableMirrorRB); m_pLeftPagesRB->Enable(bEnableMirrorRB); m_pRightPagesRB->Enable(bEnableMirrorRB); - m_pMirror->Enable(bEnable); m_pAllPagesRB->SaveValue(); m_pLeftPagesRB->SaveValue();