mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-07-03 02:31:08 +00:00
Migrated to Python3; Switched to Peakutils for peak finding routines; CHanged behaviour of temperature cut-offs
This commit is contained in:
parent
41b252a3c9
commit
ff7f10438b
7 changed files with 93 additions and 772 deletions
|
@ -258,7 +258,7 @@ class Ui_MainWindow(object):
|
|||
self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
|
||||
self.actionAbout_Qt.setText(QtGui.QApplication.translate("MainWindow", "About Qt", None, QtGui.QApplication.UnicodeUTF8))
|
||||
|
||||
import icons_rc
|
||||
#import icons_rc
|
||||
|
||||
if __name__ == "__main__":
|
||||
import sys
|
||||
|
|
BIN
ui/__pycache__/Ui_mainwindow.cpython-34.pyc
Normal file
BIN
ui/__pycache__/Ui_mainwindow.cpython-34.pyc
Normal file
Binary file not shown.
BIN
ui/__pycache__/__init__.cpython-34.pyc
Normal file
BIN
ui/__pycache__/__init__.cpython-34.pyc
Normal file
Binary file not shown.
BIN
ui/__pycache__/mainwindow.cpython-34.pyc
Normal file
BIN
ui/__pycache__/mainwindow.cpython-34.pyc
Normal file
Binary file not shown.
|
@ -80,7 +80,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
|||
if self.groupBox_signal_threshold.isChecked():
|
||||
signal_threshold = self.spinBox_signal_threshold.value()
|
||||
|
||||
items = (self.listWidget_data.item(i) for i in xrange(self.listWidget_data.count()))
|
||||
items = (self.listWidget_data.item(i) for i in range(self.listWidget_data.count()))
|
||||
|
||||
files = []
|
||||
for item in items:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue