mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 05:55:59 +03:00
Selective Sync: change the label text
to specify that the files will be removed from the local folder Task #2404
This commit is contained in:
parent
2f0a40c1c8
commit
cddad94e45
1 changed files with 3 additions and 1 deletions
|
@ -271,7 +271,9 @@ void SelectiveSyncDialog::init(Account *account)
|
|||
setWindowTitle(tr("Choose What to Sync"));
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
_treeView = new SelectiveSyncTreeView(account, this);
|
||||
layout->addWidget(new QLabel(tr("Unchecked folders will not be sync to this computer")));
|
||||
QLabel *label = new QLabel(tr("Unchecked folders will be <b>removed</b> from your local file system and will not be synchronized to this computer anymore"));
|
||||
label->setWordWrap(true);
|
||||
layout->addWidget(label);
|
||||
layout->addWidget(_treeView);
|
||||
QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal);
|
||||
QPushButton *button;
|
||||
|
|
Loading…
Reference in a new issue