Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2017-01-11 17:55:07 +0300
committerChristian Kamm <mail@ckamm.de>2017-01-13 12:55:45 +0300
commit0249a68420ba4e225caba416835fd6ec5500dd19 (patch)
treec9654fdae7e67112ab1ff933f68503514680faeb /src/gui/selectivesyncdialog.cpp
parentaa6f041c36e16800a49a26639d1f0a9422461654 (diff)
SelectiveSync: adjust the position of the "Loading" label
It should be parented to the treeview to be sure that is shows inside of it.
Diffstat (limited to 'src/gui/selectivesyncdialog.cpp')
-rw-r--r--src/gui/selectivesyncdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/selectivesyncdialog.cpp b/src/gui/selectivesyncdialog.cpp
index 296b32e5e..4f23e248b 100644
--- a/src/gui/selectivesyncdialog.cpp
+++ b/src/gui/selectivesyncdialog.cpp
@@ -62,7 +62,7 @@ SelectiveSyncWidget::SelectiveSyncWidget(AccountPtr account, QWidget *parent)
, _inserting(false)
, _folderTree(new QTreeWidget(this))
{
- _loading = new QLabel(tr("Loading ..."), this);
+ _loading = new QLabel(tr("Loading ..."), _folderTree);
auto layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);