modificate librerie in moduli
This commit is contained in:
@@ -1 +0,0 @@
|
||||
PYTHONPATH = "${workspaceFolder}/spex/libbananasplit;${workspaceFolder}/spex/userInterface/compiledUI"
|
||||
@@ -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'))
|
||||
|
||||
0
SPEx/spex/userInterface/__init__.py
Normal file
0
SPEx/spex/userInterface/__init__.py
Normal file
0
SPEx/spex/userInterface/compiledUI/__init__.py
Normal file
0
SPEx/spex/userInterface/compiledUI/__init__.py
Normal file
Reference in New Issue
Block a user