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:
authorMarkus Goetz <markus@woboq.com>2017-05-08 21:57:18 +0300
committerMarkus Goetz <markus@woboq.com>2017-05-10 16:41:58 +0300
commit8da7919a4375990c69569c56de5a17ff1464ded4 (patch)
treef2e5bdc52992624656fb7b231dce1400a1e24834 /src/gui/sharedialog.cpp
parentf52d66a95475e8b15cc5b1d838d5b1f60eda3d3b (diff)
Sharing: Fix UI glitch when sharing is disabled
Diffstat (limited to 'src/gui/sharedialog.cpp')
-rw-r--r--src/gui/sharedialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/sharedialog.cpp b/src/gui/sharedialog.cpp
index 5c5e6ff13..a2bd34a37 100644
--- a/src/gui/sharedialog.cpp
+++ b/src/gui/sharedialog.cpp
@@ -172,6 +172,7 @@ void ShareDialog::showSharingUi()
if (!canReshare) {
auto label = new QLabel(this);
label->setText(tr("The file can not be shared because it was shared without sharing permission."));
+ label->setWordWrap(true);
layout()->replaceWidget(_ui->shareWidgets, label);
return;
}