Open salahoued opened 1 month ago
There is a problem handling the exit
action. This action has high priority and terminates the program before any other actions are performed. I don't know how to fix it without breaking everything else, sorry =)
No, there is no problem.
It's just that I'm used to it CTRL+q
: for a Kivy app I did, and q
for imv
.
I can, just add a keybind s
for example to save
then q
to exit
.
But most of all I thank you for this work
I have a similar issue of keybindings not getting overriden, only appended. When I have Shift+s=scale fit
it toggles the slideshow (because that is the default binding) and also executes my binding. I don't remember this happening in the previous version though (now on 3.4)
Edit: I noticed the scale action is not yet in 3.4, that's why it started the slideshow - because it ignored the invalid mapping. If there could pop up a message with the invalid binding that would be very useful.
When I have Shift+s=scale fit it toggles the slideshow
It was #203, fixed in master.
Hi, I want to write a script that allows me to browse a directory of images, and when on exit (pressing
q
) the current image is written to a filelast_page.txt
, and then exit. So when running the script again it read the filelast_page.txt
and pass it toswayimg
that way it starts up at the last page/image.The issue is, when pressing
q
, thecurrent_file
is not written tolast_page.txt
and it just exitsI have commented out the
q
keybind in the config file for both theviewer
andgallery
.