Related: tdf#99324 accel underlines don't appear in hyperlink dialog

Change-Id: Ib16b239c88b1d1157fc18bc62b5f01c52e896a48
This commit is contained in:
Caolán McNamara
2016-07-29 15:28:34 +01:00
parent a32c0828f6
commit bb01247f71

View File

@@ -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