vcl/source/treelist/treelistbox.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 4f053ee1b55faa9deec3cbf7cb88f265458b20e0 Author: Jim Raykowski <[email protected]> AuthorDate: Mon Oct 20 01:25:01 2025 -0800 Commit: Jim Raykowski <[email protected]> CommitDate: Mon Oct 20 18:16:31 2025 +0200 tdf#168929 fix cannot rename objects with CJK languages via Navigator Change-Id: I11fa5106d63b78a4aacb144ed70ac658607611a1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192704 Tested-by: Jenkins Reviewed-by: Jim Raykowski <[email protected]> diff --git a/vcl/source/treelist/treelistbox.cxx b/vcl/source/treelist/treelistbox.cxx index 1a4c5ed62aa5..1ebe7f643343 100644 --- a/vcl/source/treelist/treelistbox.cxx +++ b/vcl/source/treelist/treelistbox.cxx @@ -138,6 +138,8 @@ void MyEdit_Impl::Command(const CommandEvent& rCEvt) Edit::Command(rCEvt); pOwner->InsertEscapeAccel(); } + else + Edit::Command(rCEvt); } SvInplaceEdit2::SvInplaceEdit2
