From df5c0c476650f1292c2c2dc5674c7bcb155db584 2010-10-09 06:51:46
From: MinRK <benjaminrk@gmail.com>
Date: 2010-10-09 06:51:46
Subject: [PATCH] simplified close message

---

diff --git a/IPython/frontend/qt/console/ipythonqt.py b/IPython/frontend/qt/console/ipythonqt.py
index 83e5d0a..63e9d38 100644
--- a/IPython/frontend/qt/console/ipythonqt.py
+++ b/IPython/frontend/qt/console/ipythonqt.py
@@ -53,8 +53,8 @@ class MainWindow(QtGui.QMainWindow):
             title = self.window().windowTitle()
             reply = QtGui.QMessageBox.question(self, title,
                 "Close just this console, or shutdown the kernel and close "+
-                "all windows attached to it?", "Cancel",
-                'Close Console', 'Close All')
+                "all windows attached to it?", 
+                'Cancel', 'Close Console', 'Close All')
             print reply
             if reply == 2:
                 kernel_manager.shutdown_kernel()