Skip to content
Snippets Groups Projects
Commit e7e59eba authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

callview: fix double click fullscreen

GitLab: #990
GitLab: #1016
Change-Id: Ia578493cb60271b284829dbef9179a0fccebbbd2
parent 92ee3806
No related branches found
No related tags found
No related merge requests found
...@@ -161,14 +161,6 @@ Item { ...@@ -161,14 +161,6 @@ Item {
} }
} }
MultiPointTouchArea {
anchors.fill: parent
minimumTouchPoints: 3
onPressed: {
takeScreenshot()
}
}
HoverHandler { HoverHandler {
id: hoverIndicator id: hoverIndicator
......
...@@ -438,14 +438,18 @@ void ...@@ -438,14 +438,18 @@ void
UtilsAdapter::setDownloadPath(QString dir) UtilsAdapter::setDownloadPath(QString dir)
{ {
setAppValue(Settings::Key::DownloadPath, dir); setAppValue(Settings::Key::DownloadPath, dir);
lrcInstance_->accountModel().downloadDirectory = dir + "/"; if (!dir.endsWith(QDir::separator()))
dir += QDir::separator();
lrcInstance_->accountModel().downloadDirectory = dir;
} }
void void
UtilsAdapter::setScreenshotPath(QString dir) UtilsAdapter::setScreenshotPath(QString dir)
{ {
setAppValue(Settings::Key::ScreenshotPath, dir); setAppValue(Settings::Key::ScreenshotPath, dir);
lrcInstance_->accountModel().screenshotDirectory = dir + QDir::separator(); if (!dir.endsWith(QDir::separator()))
dir += QDir::separator();
lrcInstance_->accountModel().screenshotDirectory = dir;
} }
void void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment