diff --git a/IPython/frontend/qt/console/mainwindow.py b/IPython/frontend/qt/console/mainwindow.py index 6563dd7..7b622ef 100644 --- a/IPython/frontend/qt/console/mainwindow.py +++ b/IPython/frontend/qt/console/mainwindow.py @@ -880,8 +880,8 @@ class MainWindow(QtGui.QMainWindow): else: msg = "Close console, stop kernel, and Quit?" info = "Kernels not started here (e.g. notebooks) will be left alone." - closeall = QtGui.QPushButton("&Yes, quit everything", self) - closeall.setShortcut('Y') + closeall = QtGui.QPushButton("&Quit", self) + closeall.setShortcut('Q') box = QtGui.QMessageBox(QtGui.QMessageBox.Question, title, msg) box.setInformativeText(info)