sc/source/ui/view/cellsh1.cxx | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit 7a363fdb7a74fb0bb05aef8de88e6f6bc34c3a81 Author: Tünde Tóth <[email protected]> AuthorDate: Thu Mar 18 10:58:58 2021 +0100 Commit: Gabor Kelemen <[email protected]> CommitDate: Tue Jun 29 13:21:55 2021 +0200 tdf#36466 sc: update status bar at Select Visible Rows Using Edit->Select->Select Visible Rows (Columns) Only option, update status bar to show the selected rows (in the case of Autofilter), or nothing (no AutoFilter), instead of the outdated value with the not selected hidden rows (columns). Change-Id: Ib31ea1d0cc15e57f883f5492104da490391117a6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112676 Tested-by: László Németh <[email protected]> Reviewed-by: László Németh <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118068 Tested-by: Gabor Kelemen <[email protected]> Reviewed-by: Gabor Kelemen <[email protected]> diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx index ee3c9a30c99c..7a987f66e287 100644 --- a/sc/source/ui/view/cellsh1.cxx +++ b/sc/source/ui/view/cellsh1.cxx @@ -2806,6 +2806,8 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) rMark.ResetMark(); rMark.MarkToSimple(); + + pTabViewShell->SelectionChanged(); } break; @@ -2844,6 +2846,8 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) rMark.ResetMark(); rMark.MarkToSimple(); + + pTabViewShell->SelectionChanged(); } break; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
