Skip to content

Commit

Permalink
Added fix for laser wavelengths not being restored on a restart.
Browse files Browse the repository at this point in the history
  • Loading branch information
lange50 committed Mar 28, 2025
1 parent dbbf58d commit 2020829
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/qudi/gui/terascan/terascan_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ def on_activate(self) -> None:
self.__timer = QtCore.QTimer()
self.__timer.setSingleShot(False)
self.__timer.timeout.connect(self._update_plot)

# Restore saved wavelengths:
self.sigSetWavelengths.emit(self._start_wavelength, self._stop_wavelength)

# Show the main window and raise it above all others
self.show()
Expand Down

0 comments on commit 2020829

Please sign in to comment.