summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-12-05 11:54:02 +0300
committerMuhammet Kara <muhammet.kara@pardus.org.tr>2016-12-06 06:34:11 +0000
commitdd89c68edf7f022e1c96d0cc9e7e13cde042dd4b (patch)
treed647eb6c4da5333dfcff9b05feb2464bb9e39061
parent2e293a731c1559c9869dfcb32491bc600fc18e4e (diff)
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 <ci@libreoffice.org> Reviewed-by: Muhammet Kara <muhammet.kara@pardus.org.tr>
-rw-r--r--sw/source/ui/frmdlg/frmpage.cxx2
1 files changed, 1 insertions, 1 deletions
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();