[Libreoffice-commits] core.git: vcl/source

Akshay Deep akshaydeepiitr at gmail.com
Wed Sep 7 19:50:38 UTC 2016


 vcl/source/window/toolbox.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit eb20d3cdaacb96b23f1fc771120388e6628b09e2
Author: Akshay Deep <akshaydeepiitr at gmail.com>
Date:   Wed Sep 7 23:53:47 2016 +0530

    tdf#101869 Allow toolbox to open from spacebar
    
    Change-Id: I3a60c8f590f78a9d750a428170d2a0521f267fd8
    Reviewed-on: https://gerrit.libreoffice.org/28727
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
    Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index e9e539a..effb2fb 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -5264,6 +5264,11 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
                 bForwardKey = !ImplActivateItem( aKeyCode );
         }
         break;
+        case KEY_SPACE:
+        {
+            ImplOpenItem( aKeyCode );
+        }
+        break;
         default:
             {
             sal_uInt16 aKeyGroup = aKeyCode.GetGroup();


More information about the Libreoffice-commits mailing list