Add main window title for the examples

This commit is contained in:
Billy Su 2018-02-02 22:40:06 +08:00
parent 4ed09ebdf1
commit 8a956bfddb

View File

@ -26,6 +26,7 @@ class ExampleLoader(QtGui.QMainWindow):
self.cw = QtGui.QWidget()
self.setCentralWidget(self.cw)
self.ui.setupUi(self.cw)
self.setWindowTitle("Examples")
self.codeBtn = QtGui.QPushButton('Run Edited Code')
self.codeLayout = QtGui.QGridLayout()