Merged in camellan/flatcam/Beta (pull request #173)

Edit Russian translation
This commit is contained in:
Camellan
2019-08-03 20:13:29 +00:00
committed by Marius Stanciu
5 changed files with 105 additions and 81 deletions

View File

@@ -3286,7 +3286,7 @@ class App(QtCore.QObject):
layout3 = QtWidgets.QHBoxLayout()
layout1.addLayout(layout3)
layout3.addStretch()
okbtn = QtWidgets.QPushButton("Close")
okbtn = QtWidgets.QPushButton(_("Close"))
layout3.addWidget(okbtn)
okbtn.clicked.connect(self.accept)
@@ -8350,7 +8350,7 @@ class App(QtCore.QObject):
This behavior works only within main thread,
errors with promissed tasks can be catched and detected only with log.
TODO: this problem have to be addressed somehow, maybe rewrite promissing to be blocking somehow for
TODO: this problem have to be addressed somehow, maybe rewrite promissing to be blocking somehow for
TCL shell.
Kamil's comment: I will rewrite existing TCL commands from time to time to follow this rules.