You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose the user opens a single image and swipes through other images in that directory while selecting images. Move, hardlink or delete operations are only affecting the image currently displayed. Hence, if the user hits ESC for switching over to thumbnail view, the ImageSectionDataContainer with all the selected images will be destroyed and the selection is lost without notice.
Two problems must be addressed:
a) Notification of loss of selection must be done in DocumentView as well.
b) If somehow must be possible to apply a file operation to all the checked files from the DocumentView.
Possible solutions for b):
The ImageSectionDataContainer of the currently active DocumentView with all its images should initialize the model of the ThumbnailView.
Pro: loading times in large directories can be reduced.
Con: Sorting of that DataContainer will not match the previously saved sorting of the ThumbnailViewer model and must be either overriden or expensively re-sorted.
Change the DocumentView to apply FileOperations to all selected images
Pro: Easy to implement
Con: Unintuitive, there might be non-visible side-effects as the user doesn't see which images were selected.
Disable selecting images in DocumentView if DataSectionContainer mismatches the DataContainer of the Model.
Pro: Intuitive
Con: Hard to implement, considering changing directories, closing and reopening of the ThumbnailView window, etc.
The text was updated successfully, but these errors were encountered:
Suppose the user opens a single image and swipes through other images in that directory while selecting images. Move, hardlink or delete operations are only affecting the image currently displayed. Hence, if the user hits ESC for switching over to thumbnail view, the ImageSectionDataContainer with all the selected images will be destroyed and the selection is lost without notice.
Two problems must be addressed:
a) Notification of loss of selection must be done in DocumentView as well.
b) If somehow must be possible to apply a file operation to all the checked files from the DocumentView.
Possible solutions for b):
Pro: loading times in large directories can be reduced.
Con: Sorting of that DataContainer will not match the previously saved sorting of the ThumbnailViewer model and must be either overriden or expensively re-sorted.
Pro: Easy to implement
Con: Unintuitive, there might be non-visible side-effects as the user doesn't see which images were selected.
Pro: Intuitive
Con: Hard to implement, considering changing directories, closing and reopening of the ThumbnailView window, etc.
The text was updated successfully, but these errors were encountered: