sd/source/ui/animations/CustomAnimationDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a39fc76e888a2514a245c652c8e5be096af2fdbb Author: Julien Nabet <[email protected]> AuthorDate: Thu Dec 14 15:13:29 2023 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Fri Dec 15 08:59:24 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/+/160791 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Miklos Vajna <[email protected]> diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index 41d7685798d4..cc85efcddbaa 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); }
