We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ae430 commit 33b46d2Copy full SHA for 33b46d2
mantidimaging/gui/windows/live_viewer/presenter.py
@@ -78,7 +78,8 @@ def select_image(self, index: int) -> None:
78
if not self.model.images:
79
return
80
self.selected_image = self.model.images[index]
81
- self.view.label_active_filename.setText(self.selected_image.image_name)
+ image_timestamp = self.selected_image.image_modified_time_stamp
82
+ self.view.label_active_filename.setText(f"{self.selected_image.image_name} - {image_timestamp}")
83
84
self.display_image(self.selected_image.image_path)
85
0 commit comments