View Single Post
Moderator | Posts: 6,215 | Thanked: 6,400 times | Joined on Nov 2011
#8
Originally Posted by Eminem View Post
Any way to change Save Image folder to something else? Maybe choose by myself?

Great app and outstanding work as always.
If I am not wrong, src/screenshot.cpp is the file you should be interested in:

Code:
 void Screenshot::capture()
{
    QString folder = QStandardPaths::writableLocation(QStandardPaths::PicturesLocation);
    if (_useSubfolder) {
        folder.append("/Screenshots");
    }
 

The Following User Says Thank You to thedead1440 For This Useful Post: