modificate librerie in moduli

This commit is contained in:
2020-09-10 16:03:09 +02:00
parent cf8c4893ff
commit d5cf9cba56
4 changed files with 3 additions and 4 deletions

View File

@@ -1 +0,0 @@
PYTHONPATH = "${workspaceFolder}/spex/libbananasplit;${workspaceFolder}/spex/userInterface/compiledUI"

View File

@@ -227,9 +227,9 @@ class bananaTitolo(PyQt5.QtWidgets.QWidget):
# imposta predefiniti interfaccia da file
#Data (la piu complicata)
self.titoloui.chk_data.setChecked(self.conf.getParam('docStruct','outDate'))
self.titoloui.rad_datajpn.setChecked(self.conf.getParam('docStruct', 'outDateType') is 'jpn')
self.titoloui.rad_dataita.setChecked(self.conf.getParam('docStruct', 'outDateType') is 'it')
self.titoloui.rad_datausa.setChecked(self.conf.getParam('docStruct', 'outDateType') is 'usa')
self.titoloui.rad_datajpn.setChecked(self.conf.getParam('docStruct', 'outDateType') == 'jpn')
self.titoloui.rad_dataita.setChecked(self.conf.getParam('docStruct', 'outDateType') == 'it')
self.titoloui.rad_datausa.setChecked(self.conf.getParam('docStruct', 'outDateType') == 'usa')
#Titolo
self.titoloui.chk_titolo.setChecked(self.conf.getParam('docStruct','outTitle'))
self.titoloui.spn_ncarat.setValue(self.conf.getParam('docStruct', 'maxTitleLen'))

View File