diff options
author | Laurent Balland-Poirier <laurent.balland-poirier@laposte.net> | 2017-04-22 15:41:16 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-05-02 11:02:07 +0200 |
commit | 8b56a5ceed41a1bb0a82af71c90973f50f54e4b8 (patch) | |
tree | e102c6628319d760d47980b2e5db20ad3bef5adc | |
parent | 591ac7e604fa47304a5ddc1a4f9badbba1199903 (diff) |
tdf#77816 Duplicate dlg: enable fractionnal angle
In Duplicate dialog of Draw:
Count angle in 100th of degree
Change-Id: If1af9a42e7c35d39edbdc3fa624489d7e38b42e1
Reviewed-on: https://gerrit.libreoffice.org/36816
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r-- | sd/source/ui/func/fucopy.cxx | 2 | ||||
-rw-r--r-- | sd/uiconfig/sdraw/ui/copydlg.ui | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx index 45490d68f8b3..0edd047c0fed 100644 --- a/sd/source/ui/func/fucopy.cxx +++ b/sd/source/ui/func/fucopy.cxx @@ -242,7 +242,7 @@ void FuCopy::DoExecute( SfxRequest& rReq ) mpView->ResizeAllMarked( aRect.TopLeft(), aWidth, aHeight ); if( mpView->IsRotateAllowed() ) - mpView->RotateAllMarked( aRect.Center(), lAngle * 100 ); + mpView->RotateAllMarked( aRect.Center(), lAngle ); if( mpView->IsMoveAllowed() ) mpView->MoveAllMarked( Size( lSizeX, lSizeY ) ); diff --git a/sd/uiconfig/sdraw/ui/copydlg.ui b/sd/uiconfig/sdraw/ui/copydlg.ui index ddadc3fdcd77..07c1a506afda 100644 --- a/sd/uiconfig/sdraw/ui/copydlg.ui +++ b/sd/uiconfig/sdraw/ui/copydlg.ui @@ -273,6 +273,7 @@ <property name="hexpand">True</property> <property name="invisible_char">●</property> <property name="adjustment">adjustment2</property> + <property name="digits">2</property> </object> <packing> <property name="left_attach">1</property> |