diff options
-rw-r--r-- | svtools/source/contnr/ivctrl.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/svtools/source/contnr/ivctrl.cxx b/svtools/source/contnr/ivctrl.cxx index 7c35e4a12418..9291c6053097 100644 --- a/svtools/source/contnr/ivctrl.cxx +++ b/svtools/source/contnr/ivctrl.cxx @@ -238,9 +238,13 @@ WinBits SvtIconChoiceCtrl::GetStyle() const { return _pImpl->GetStyle(); } -void SvtIconChoiceCtrl::Command( const CommandEvent& rCEvt ) + +void SvtIconChoiceCtrl::Command(const CommandEvent& rCEvt) { _pImpl->Command( rCEvt ); + //pass at least alt press/release to parent impl + if (rCEvt.GetCommand() == CommandEventId::ModKeyChange) + Control::Command(rCEvt); } #ifdef DBG_UTIL |