Fix title of about dialog
This commit is contained in:
parent
d69429b9c5
commit
cca2a0fa68
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class AboutDialog(QtGui.QDialog):
|
|||
def __init__(self, app_name, author, weechat_site, *args):
|
||||
QtGui.QDialog.__init__(*(self,) + args)
|
||||
self.setModal(True)
|
||||
self.setWindowTitle(app_name)
|
||||
self.setWindowTitle('About')
|
||||
|
||||
close_button = QtGui.QPushButton('Close')
|
||||
close_button.pressed.connect(self.close)
|
||||
|
|
Loading…
Reference in a new issue