##// END OF EJS Templates
replace "Yes, close all" button text with 'Quit'...
MinRK -
Show More
@@ -880,8 +880,8 b' class MainWindow(QtGui.QMainWindow):'
880 else:
880 else:
881 msg = "Close console, stop kernel, and Quit?"
881 msg = "Close console, stop kernel, and Quit?"
882 info = "Kernels not started here (e.g. notebooks) will be left alone."
882 info = "Kernels not started here (e.g. notebooks) will be left alone."
883 closeall = QtGui.QPushButton("&Yes, quit everything", self)
883 closeall = QtGui.QPushButton("&Quit", self)
884 closeall.setShortcut('Y')
884 closeall.setShortcut('Q')
885 box = QtGui.QMessageBox(QtGui.QMessageBox.Question,
885 box = QtGui.QMessageBox(QtGui.QMessageBox.Question,
886 title, msg)
886 title, msg)
887 box.setInformativeText(info)
887 box.setInformativeText(info)
General Comments 0
You need to be logged in to leave comments. Login now