Kaydet (Commit) 69050096 authored tarafından Oliver-Rainer Wittmann's avatar Oliver-Rainer Wittmann

124891: <SidebarDockingWindow::GetFocus()> - check, if sidebar controller is…

124891: <SidebarDockingWindow::GetFocus()> - check, if sidebar controller is available before accessing it.
üst ec7fc735
......@@ -84,7 +84,10 @@ void SidebarDockingWindow::DoDispose (void)
void SidebarDockingWindow::GetFocus()
{
mpSidebarController->GetFocusManager().GrabFocus();
if (mpSidebarController.is())
{
mpSidebarController->GetFocusManager().GrabFocus();
}
}
......
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