If i select files in the thumbnail view, and press ctrl-c, only the last selected element's basename makes it's way onto the clipboard. Like: IMG_20151113_203222.jpg Instead of how it worked previously: file://some/path/1.jpg file://some/path/2.jpg file://some/path/3.jpg This way i can't copy out of gwenview:( Reproducible: Always Steps to Reproduce: 1. Select files 2. Press ctrl-c 3. Press ctrl-v in kate or in a file browser. Actual Results: IMG_20151113_203222.jpg Expected Results: file://some/path/1.jpg file://some/path/2.jpg file://some/path/3.jpg meta@x220:~$ gwenview --version org.kde.gwenview 15.08.2
I can confirm it on "org.kde.gwenview 15.08.3"
Here's a quick “me too” for bug confirmation, using 16.04.3 on Gentoo.
I had a quick look at the code and the application. I think we are dealing with a simple typo here: app/fileopscontextmanageritem.cpp:186 -actionCollection->setDefaultShortcut(d->mCopyAction, Qt::Key_F7); +actionCollection->setDefaultShortcut(d->mCopyToAction, Qt::Key_F7);
Git commit 1182058adaa07758584ace0aad06331b8e8cea8b by Christoph Feck, on behalf of Frank Steinmetzger. Committed on 10/02/2017 at 01:02. Pushed by cfeck into branch 'Applications/16.12'. Fix wrong action name for setDefaultShortcut() Reviewed by Christoph Feck. FIXED-IN: 16.12.3 M +1 -1 app/fileopscontextmanageritem.cpp https://commits.kde.org/gwenview/1182058adaa07758584ace0aad06331b8e8cea8b
Nice spot, merci :)