Commit e9e5be516f6a924f2033f7c5bd650c70595cea53

Authored by 김태훈
1 parent 754df0b51d
Exists in master and in 2 other branches fhd, fhd-demo

창 전환 후 복귀했을 때 포커스가 남아있는 문제 수정

app/gui/oven_control/autocookselectionwindow.cpp
... ... @@ -107,6 +107,8 @@ void AutoCookSelectionWindow::keyReleaseEvent(QKeyEvent *event)
107 107  
108 108 void AutoCookSelectionWindow::onCookSelected(int idx)
109 109 {
  110 + setFocus();
  111 +
110 112 AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
111 113 w->setWindowModality(Qt::WindowModal);
112 114 w->showFullScreen();
... ...