Skip to content

Commit

Permalink
SEBWIN-817: Resolved focus issue using custom focus handler and retur…
Browse files Browse the repository at this point in the history
…ning the actually correct value.
  • Loading branch information
dbuechel committed Oct 25, 2024
1 parent 091b4ef commit e8ebb21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SafeExamBrowser.Browser/Handlers/FocusHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void OnGotFocus(IWebBrowser webBrowser, IBrowser browser)

public bool OnSetFocus(IWebBrowser webBrowser, IBrowser browser, CefFocusSource source)
{
return true;
return false;
}

public void OnTakeFocus(IWebBrowser webBrowser, IBrowser browser, bool next)
Expand Down

0 comments on commit e8ebb21

Please sign in to comment.