From e31e34928ea447fbf56098a70b18b3a1278040bd Mon Sep 17 00:00:00 2001 From: Dominik Demuth Date: Tue, 2 Jan 2024 10:27:23 +0100 Subject: [PATCH] make placeholder text true in FC reader --- src/gui_qt/io/fcbatchreader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui_qt/io/fcbatchreader.py b/src/gui_qt/io/fcbatchreader.py index 124e2a6..4f678b5 100644 --- a/src/gui_qt/io/fcbatchreader.py +++ b/src/gui_qt/io/fcbatchreader.py @@ -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)