Kaydet (Commit) bb01247f authored tarafından Caolán McNamara's avatar Caolán McNamara

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

Change-Id: Ib16b239c88b1d1157fc18bc62b5f01c52e896a48
üst a32c0828
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment