소스 검색

Remove duplicate work

Daniel Lundqvist 11 년 전
부모
커밋
7e3f62a367
1개의 변경된 파일0개의 추가작업 그리고 7개의 파일을 삭제
  1. 0 7
      src/citra_qt/main.cpp

+ 0 - 7
src/citra_qt/main.cpp

@@ -170,13 +170,6 @@ void GMainWindow::BootGame(std::string filename)
     render_window->GetEmuThread().start();
 
     render_window->show();
-
-    // Allow manually setting focus to the render widget if not using popout mode.
-    if (!ui.action_Popout_Window_Mode->isChecked()) {
-        render_window->setFocusPolicy(Qt::ClickFocus);
-        render_window->setFocus();
-    }
-
     OnStartGame();
 }