summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2015-06-19 17:07:50 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2015-06-20 00:17:54 +0200
commit3ecef8cedb215e49237a11607197edc91639bfcd (patch)
tree7d979d3ffb393039f137ad814c5053dd4a3d0235
parentb3c4d4c5a4f8826274fa531831fecd9d7a798d43 (diff)
tdf#83859: Make arrow keys work again in named ranges dropdown
Regression from ed6b8c9f8d1b93230 which slightly changed the logic and set bHandled to true by default, thus effectively throwing all key press events except for Enter and Esc away. Set key press events (minus Enter & Esc) to bHandled = false and let them fall through to be dealt with in the base class (ComboBox) Change-Id: Ie1d857725a7de1d0bed1fd59df7eef5390ae5f3d
-rw-r--r--sc/source/ui/app/inputwin.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 47f14003e8df..7b14b41fa7e8 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -2504,6 +2504,10 @@ bool ScPosWnd::Notify( NotifyEvent& rNEvt )
ReleaseFocus_Impl();
}
break;
+
+ default:
+ bHandled = false;
+ break;
}
}
break;