Kaydet (Commit) 77fe54df authored tarafından Jim Raykowski's avatar Jim Raykowski

tdf#102005 Fix F6 regression in start center

Change-Id: I152a79b79e75bf87c437dd4dd2976c73198e6b52
Reviewed-on: https://gerrit.libreoffice.org/68185
Tested-by: Jenkins
Reviewed-by: 's avatarV Stuart Foote <vstuart.foote@utsa.edu>
Reviewed-by: 's avatarJim Raykowski <raykowj@gmail.com>
üst 1f97ce11
...@@ -410,15 +410,18 @@ bool BackingWindow::PreNotify(NotifyEvent& rNEvt) ...@@ -410,15 +410,18 @@ bool BackingWindow::PreNotify(NotifyEvent& rNEvt)
} }
else // F6 else // F6
{ {
if(mpAllRecentThumbnails->IsVisible()) if( mpAllButtonsBox->HasChildPathFocus() )
{
mpAllRecentThumbnails->GrabFocus();
return true;
}
else if(mpLocalView->IsVisible())
{ {
mpLocalView->GrabFocus(); if(mpAllRecentThumbnails->IsVisible())
return true; {
mpAllRecentThumbnails->GrabFocus();
return true;
}
else if(mpLocalView->IsVisible())
{
mpLocalView->GrabFocus();
return true;
}
} }
} }
} }
......
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