made some cosmetic changes
This commit is contained in:
parent
e4821da97a
commit
d49c320454
|
@ -201,7 +201,7 @@ if __name__ == '__main__':
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
QApplication.setQuitOnLastWindowClosed(False)
|
QApplication.setQuitOnLastWindowClosed(False)
|
||||||
window = Window()
|
window = Window()
|
||||||
if (SettingsExist() == True):
|
if SettingsExist():
|
||||||
window.hide()
|
window.hide()
|
||||||
else:
|
else:
|
||||||
window.show()
|
window.show()
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Mail Notify - Settings</string>
|
<string>Mail Notifier - Settings</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowIcon">
|
<property name="windowIcon">
|
||||||
<iconset>
|
<iconset>
|
||||||
|
|
|
@ -120,7 +120,7 @@ class Ui_Settings(object):
|
||||||
|
|
||||||
def retranslateUi(self, Settings):
|
def retranslateUi(self, Settings):
|
||||||
_translate = QtCore.QCoreApplication.translate
|
_translate = QtCore.QCoreApplication.translate
|
||||||
Settings.setWindowTitle(_translate("Settings", "Mail Notify - Settings"))
|
Settings.setWindowTitle(_translate("Settings", "Mail Notifier - Settings"))
|
||||||
self.boolifNotify.setText(_translate("Settings", "Use also pop-up notification"))
|
self.boolifNotify.setText(_translate("Settings", "Use also pop-up notification"))
|
||||||
self.groupBox.setTitle(_translate("Settings", "IMAP settings"))
|
self.groupBox.setTitle(_translate("Settings", "IMAP settings"))
|
||||||
self.txtboxMailServer.setPlaceholderText(_translate("Settings", "mail.example.com"))
|
self.txtboxMailServer.setPlaceholderText(_translate("Settings", "mail.example.com"))
|
||||||
|
|
Loading…
Reference in New Issue