Skip to content
Snippets Groups Projects
Commit 6480911e authored by JOSSOUD Olivier's avatar JOSSOUD Olivier
Browse files

ExploUim. Bug correction.

parent 89cf29bf
No related branches found
No related tags found
No related merge requests found
...@@ -516,7 +516,7 @@ class ExploUim(QObject): ...@@ -516,7 +516,7 @@ class ExploUim(QObject):
self.main_ui.explo_label_timeshift.setText("Time shift: " + "{:.2f}".format(timeshift_s) + "s") self.main_ui.explo_label_timeshift.setText("Time shift: " + "{:.2f}".format(timeshift_s) + "s")
pos_x = QDateTime() pos_x = QDateTime()
pos_x.setMSecsSinceEpoch(mouse_point.x() * 1000) pos_x.setMSecsSinceEpoch(round(mouse_point.x() * 1000))
pos_x = pos_x.toUTC() pos_x = pos_x.toUTC()
self.sig_cursor_moved.emit(pos_x.time()) self.sig_cursor_moved.emit(pos_x.time())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment