From 8f8e165785bedcc166e0e93ccd544dd9510e30c8 2011-12-13 07:39:22
From: Matthias BUSSONNIER <bussonniermatthias@gmail.com>
Date: 2011-12-13 07:39:22
Subject: [PATCH] put qtconsole forground when launching

---

diff --git a/IPython/frontend/qt/console/qtconsoleapp.py b/IPython/frontend/qt/console/qtconsoleapp.py
index 7b3e608..83f9c1d 100644
--- a/IPython/frontend/qt/console/qtconsoleapp.py
+++ b/IPython/frontend/qt/console/qtconsoleapp.py
@@ -334,6 +334,7 @@ class IPythonQtConsoleApp(BaseIPythonApplication, IPythonConsoleApp):
 
         # draw the window
         self.window.show()
+        self.window.raise_()
 
         # Start the application main loop.
         self.app.exec_()