Usability improvement - persist phantom images in the list-store#230
Open
thegame1999 wants to merge 2 commits intolinuxmint:masterfrom
Open
Usability improvement - persist phantom images in the list-store#230thegame1999 wants to merge 2 commits intolinuxmint:masterfrom
thegame1999 wants to merge 2 commits intolinuxmint:masterfrom
Conversation
added 2 commits
February 23, 2026 19:26
thegame1999
commented
Feb 23, 2026
| update_image_pos (window); | ||
| } | ||
|
|
||
| update_image_pos (window); |
Author
There was a problem hiding this comment.
Broken images were not updating the position counter in the status bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A common workflow for me is opening a directory of unsorted photos with xviewer, scrolling through them and using drag and drop back to nemo to move them into other directories.
In the current behaviour, the image remains open after being moved but when I try go to the next image, it restarts me from the beginning of the list (frustrating).
The current behaviour appears to strike a hacky balance between actively reflecting "external" file/directory changes and not vanishing an open image immediately when it's externally moved or deleted (#184). The image remains open but is removed from the list-store, hence the position loss when scrolling.
Here I propose a cleaner solution: A persistent gallery. The image stays open and retains its position in the list-store, allowing the user to scroll on intuitively. If they return to the moved image, it fails to reload from the disk. I believe this provides a more intuitive experience and better facilitates moving and renaming while organising images from from inside the application and externally.
PR also includes some small misc fixes.