소스 검색

ENH: In pythonShell, the consoleWidget created internally is now set to be the focusProxy

See http://doc.qt.nokia.com/4.6/qwidget.html#setFocusProxy
Jean-Christophe Fillion-Robin 15 년 전
부모
커밋
93cffdf3eb
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Libs/Scripting/Python/Widgets/ctkPythonShell.cpp

+ 2 - 0
Libs/Scripting/Python/Widgets/ctkPythonShell.cpp

@@ -261,6 +261,8 @@ ctkPythonShell::ctkPythonShell(ctkAbstractPythonManager* pythonManager, QWidget*
 
   this->setObjectName("pythonShell");
 
+  this->setFocusProxy(&this->Implementation->Console);
+
   ctkPythonShellCompleter* completer = new ctkPythonShellCompleter(*this);
   this->Implementation->Console.setCompleter(completer);