浏览代码

Event loop now terminate when SimplePythonShell is closed

Jean-Christophe Fillion-Robin 14 年之前
父节点
当前提交
e240120b25
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Applications/ctkSimplePythonShell/ctkSimplePythonShellMain.cpp

+ 1 - 1
Applications/ctkSimplePythonShell/ctkSimplePythonShellMain.cpp

@@ -14,7 +14,7 @@ int main(int argc, char** argv)
   ctkSimplePythonManager pythonManager;
   
   ctkPythonShell shell(&pythonManager);
-  shell.setAttribute(Qt::WA_QuitOnClose, false);
+  shell.setAttribute(Qt::WA_QuitOnClose, true);
   shell.resize(600, 280);
   shell.show();