sd/source/ui/animations/CustomAnimationDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit cd70c6cab00796bdfd93903f9895f2900c4201de Author: Julien Nabet <[email protected]> AuthorDate: Thu Dec 14 15:13:29 2023 +0100 Commit: Michael Stahl <[email protected]> CommitDate: Fri Dec 15 10:41:36 2023 +0100 Regression typo closewise->clockwise in sd/CustomAnimationDialog Regression from a756bd31dd2da1ef134d80b2dc276cb0be228aba https://cgit.freedesktop.org/libreoffice/core/commit/?id=a756bd31dd2da1ef134d80b2dc276cb0be228aba Change-Id: Ia5fc84250eb64016f028f3ffe8b3dc581733904d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160709 Tested-by: Jenkins Reviewed-by: Michael Stahl <[email protected]> diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index e12e6ea123e7..8a2bdffcb162 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -528,7 +528,7 @@ void SdRotationPropertyBox::updateMenu() mxControl->set_item_active("360", nValue == 360); mxControl->set_item_active("720", nValue == 720); - mxControl->set_item_active("closewise", bDirection); + mxControl->set_item_active("clockwise", bDirection); mxControl->set_item_active("counterclock", !bDirection); }
