Skip to content

Commit

Permalink
feat: ensure dolphin is in foreground on launch
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Jul 17, 2021
1 parent aa62980 commit c3b61ad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Core/DolphinWX/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,9 @@ void DolphinApp::MacOpenFile(const wxString &fileName)

void DolphinApp::AfterInit()
{
// always raise the frame so that it is in the foreground on launch
main_frame->Raise();

if (!m_batch_mode)
main_frame->UpdateGameList();

Expand Down

0 comments on commit c3b61ad

Please sign in to comment.