sd/source/ui/view/drviews4.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 79fe1c3252f685ce2f90a2243bcd1ac52d67c5bf
Author:     Jim Raykowski <rayk...@gmail.com>
AuthorDate: Thu Oct 27 22:57:44 2022 -0800
Commit:     Jim Raykowski <rayk...@gmail.com>
CommitDate: Sun Oct 30 07:31:52 2022 +0100

    tdf#138868 related: Update Navigator on Esc key unmarking
    
    of all marked objects
    
    Change-Id: Icd3e96bc6abfc1d23511553752565a12dc568b1a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141954
    Tested-by: Jenkins
    Reviewed-by: Jim Raykowski <rayk...@gmail.com>

diff --git a/sd/source/ui/view/drviews4.cxx b/sd/source/ui/view/drviews4.cxx
index 9a198efae582..d9cf5656e063 100644
--- a/sd/source/ui/view/drviews4.cxx
+++ b/sd/source/ui/view/drviews4.cxx
@@ -249,7 +249,9 @@ bool DrawViewShell::KeyInput (const KeyEvent& rKEvt, 
::sd::Window* pWin)
             bRet = ViewShell::KeyInput(rKEvt, pWin);
             //If object is marked , the corresponding entry is set true , else
             //the corresponding entry is set false .
-            if(KEY_TAB == rKEvt.GetKeyCode().GetCode())
+            if(KEY_TAB == rKEvt.GetKeyCode().GetCode()
+                    || KEY_ESCAPE == rKEvt.GetKeyCode().GetCode())
+
             {
                FreshNavigatrTree();
             }

Reply via email to