bug fixes

This commit is contained in:
ingvar1995 2016-06-15 16:15:23 +03:00
parent d3c8c99048
commit 183dfadc77
3 changed files with 20 additions and 58 deletions

View file

@ -673,8 +673,10 @@ class PluginsSettings(CenteredWidget):
self.window.show()
else:
msgBox = QtGui.QMessageBox()
text = (QtGui.QApplication.translate("PluginsForm", 'No GUI found for this plugin', None,
QtGui.QApplication.UnicodeUTF8))
text = QtGui.QApplication.translate("PluginsForm", 'No GUI found for this plugin', None,
QtGui.QApplication.UnicodeUTF8)
msgBox.setWindowTitle(QtGui.QApplication.translate("PluginsForm", 'Error', None,
QtGui.QApplication.UnicodeUTF8))
msgBox.setText(text)
msgBox.exec_()