fpicker/source/office/iodlg.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit 68e0fb7bc4d56facc478a8cfb912e8e04d239e76 Author: Szymon KÅos <[email protected]> Date: Tue Dec 30 19:12:08 2014 +0100 fdo#83371 : cannot navigate to list Files in LibreOffice dialogs Change-Id: Ice5315136e25ece6a65c6136f0703825c426cf20 Reviewed-on: https://gerrit.libreoffice.org/13704 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 06ede44..5e08e1e 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -395,6 +395,11 @@ public: placesNewSize.Height() = aSize.Height(); _pImp->_pPlaces->SetSizePixel( placesNewSize ); } + + virtual void GetFocus() SAL_OVERRIDE + { + _pFileView->GrabFocus(); + } }; SvtFileDialog::~SvtFileDialog() @@ -523,6 +528,7 @@ void SvtFileDialog::Init_Impl _pContainer->set_width_request(aSize.Width()); _pContainer->set_hexpand(true); _pContainer->set_vexpand(true); + _pContainer->SetStyle( _pContainer->GetStyle() | WB_TABSTOP ); _pFileView = new SvtFileView( _pContainer, WB_BORDER, FILEDLG_TYPE_PATHDLG == _pImp->_eDlgType,
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
