We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 668ceeb + 9d5147a commit eb8c232Copy full SHA for eb8c232
1 file changed
pupil_src/shared_modules/calibration_choreography/base_plugin.py
@@ -565,8 +565,10 @@ def _perform_stop(self):
565
)
566
return
567
568
- # Reset the main window size to trigger a redraw with correct size and scale
569
- self.g_pool.trigger_main_window_redraw()
+ if self.g_pool.app == "capture":
+ # Reset the main window size to trigger a redraw with correct size and scale
570
+ # Only run in Capture to fix https://github.com/pupil-labs/pupil/issues/2119
571
+ self.g_pool.trigger_main_window_redraw()
572
573
current_mode = self.__current_mode
574
pupil_list = self.__pupil_list
0 commit comments