[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sw/source
Muhammet Kara
muhammet.kara at pardus.org.tr
Tue Dec 6 07:04:25 UTC 2016
sw/source/ui/frmdlg/frmpage.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f8c463b393885b660500bf4f7f73b4fb90ce2389
Author: Muhammet Kara <muhammet.kara at pardus.org.tr>
Date: Mon Dec 5 11:54:02 2016 +0300
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/31652
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Muhammet Kara <muhammet.kara at pardus.org.tr>
diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx
index 1312236..eab95ee 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();
More information about the Libreoffice-commits
mailing list