make placeholder text true in FC reader
This commit is contained in:
parent
bffd216d4f
commit
e31e34928e
@ -84,11 +84,11 @@ class QFCReader(QtWidgets.QDialog, Ui_FCEval_dialog):
|
||||
if self.region_box.isChecked():
|
||||
start = None
|
||||
if self.start_lineedit.text():
|
||||
start = float(self.start_lineedit.text())
|
||||
start = float(self.start_lineedit.text())*1e-6
|
||||
|
||||
stop = None
|
||||
if self.stop_lineedit.text():
|
||||
stop = float(self.stop_lineedit.text())
|
||||
stop = float(self.stop_lineedit.text())*1e-6
|
||||
region = (start, stop)
|
||||
|
||||
fc_eval = FCReader(items)
|
||||
|
Loading…
Reference in New Issue
Block a user