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

Resolves: fdo#47733 keyboard navigation broken for SvxSimpleTableContainer

üst 2130b6aa
......@@ -54,6 +54,7 @@ public:
void SetTable(SvxSimpleTable* pTable);
virtual void SetSizePixel(const Size& rNewSize);
virtual void GetFocus();
};
class SVX_DLLPUBLIC SvxSimpleTable : public SvHeaderTabListBox
......
......@@ -76,6 +76,13 @@ void SvxSimpleTableContainer::SetSizePixel(const Size& rNewSize )
m_pTable->UpdateViewSize();
}
void SvxSimpleTableContainer::GetFocus()
{
Control::GetFocus();
if (m_pTable)
m_pTable->GrabFocus();
}
// SvxSimpleTable ------------------------------------------------------------
SvxSimpleTable::SvxSimpleTable(SvxSimpleTableContainer& rParent, WinBits nBits):
......
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