diff options
author | Ken Moore <ken@ixsystems.com> | 2018-09-06 15:40:30 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-09-06 15:40:30 -0400 |
commit | c72934ff962322e6593780052c4af528f3c75974 (patch) | |
tree | e5c60df84fd45461a491f3e1aa567d9220c6d481 /src-qt5/desktop-utils/lumina-screenshot | |
parent | iFix a syntax issue with the cpp.json syntax ruleset (diff) | |
parent | When a desktop is resized automatically re-do the wallpaper as well. (diff) | |
download | lumina-c72934ff962322e6593780052c4af528f3c75974.tar.gz lumina-c72934ff962322e6593780052c4af528f3c75974.tar.bz2 lumina-c72934ff962322e6593780052c4af528f3c75974.zip |
Merge branch 'master' of github.com:lumina-desktop/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-screenshot')
-rw-r--r-- | src-qt5/desktop-utils/lumina-screenshot/MainUI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-screenshot/MainUI.cpp b/src-qt5/desktop-utils/lumina-screenshot/MainUI.cpp index 48a4ceb4..97042f9c 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-screenshot/MainUI.cpp @@ -22,7 +22,6 @@ MainUI::MainUI() IMG = new ImageEditor(this); ui->scrollArea->setWidget(IMG); areaOverlay = 0; - ppath = QDir::homePath(); ui->label_zoom_percent->setMinimumWidth( ui->label_zoom_percent->fontMetrics().width("200%") ); setupIcons(); ui->spin_monitor->setMaximum(QApplication::desktop()->screenCount()); @@ -60,6 +59,7 @@ MainUI::MainUI() connect(tabbar, SIGNAL(currentChanged(int)), this, SLOT(tabChanged(int)) ); connect(ui->check_show_popups, SIGNAL(toggled(bool)), this, SLOT(showPopupsChanged(bool)) ); settings = LUtils::openSettings("lumina-desktop", "lumina-screenshot",this); + ppath = settings->value("previous-path", QDir::homePath()).toString(); QString opt = settings->value("screenshot-target", "window").toString(); if( opt == "window") {ui->radio_window->setChecked(true); } else if(opt=="area"){ ui->radio_area->setChecked(true); } @@ -129,6 +129,7 @@ void MainUI::saveScreenshot(){ }else{ picSaved = true; ppath = filepath.section("/",0,-2); //just the directory + settings->setValue("previous-path", ppath); if (closeOnSave) { // We came here from close, now we need to close *after* handling // the current screen event. |