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
path: root/src
diff options
context:
space:
mode:
authorErik Verbruggen <erik@verbruggen.consulting>2022-07-06 19:55:12 +0300
committerHannah von Reth <vonreth@kde.org>2022-07-06 20:33:40 +0300
commit9fcac6f146b608d09adc4442c61c2c8c4a39e90b (patch)
treeee641bcf1c622fc322ca09ff32434601c6aa1046 /src
parent20b768da83b32c5c7afbad054ddbda409dbc9651 (diff)
Fix another group box label truncation
Same as #9862, but this time in the advanced section of the account wizard page. Fixes #9718
Diffstat (limited to 'src')
-rw-r--r--src/gui/newwizard/pages/accountconfiguredwizardpage.cpp2
-rw-r--r--src/gui/newwizard/pages/accountconfiguredwizardpage.ui24
2 files changed, 17 insertions, 9 deletions
diff --git a/src/gui/newwizard/pages/accountconfiguredwizardpage.cpp b/src/gui/newwizard/pages/accountconfiguredwizardpage.cpp
index 154d743fc..5bf7b22a0 100644
--- a/src/gui/newwizard/pages/accountconfiguredwizardpage.cpp
+++ b/src/gui/newwizard/pages/accountconfiguredwizardpage.cpp
@@ -53,7 +53,7 @@ AccountConfiguredWizardPage::AccountConfiguredWizardPage(const QString &defaultS
// move up top
_ui->syncModeGroupBoxLayout->removeWidget(_ui->useVfsRadioButton);
- _ui->syncModeGroupBoxLayout->insertWidget(0, _ui->useVfsRadioButton);
+ _ui->syncModeGroupBoxLayout->insertWidget(1, _ui->useVfsRadioButton);
} else {
setRecommendedOption(_ui->syncEverythingRadioButton);
}
diff --git a/src/gui/newwizard/pages/accountconfiguredwizardpage.ui b/src/gui/newwizard/pages/accountconfiguredwizardpage.ui
index e9ae2041a..767ab478c 100644
--- a/src/gui/newwizard/pages/accountconfiguredwizardpage.ui
+++ b/src/gui/newwizard/pages/accountconfiguredwizardpage.ui
@@ -116,25 +116,35 @@
<item>
<widget class="QGroupBox" name="syncModeGroupBox">
<property name="title">
- <string>Configure files download</string>
+ <string/>
+ </property>
+ <property name="flat">
+ <bool>true</bool>
</property>
<layout class="QVBoxLayout" name="syncModeGroupBoxLayout">
<property name="spacing">
<number>3</number>
</property>
<property name="leftMargin">
- <number>3</number>
+ <number>0</number>
</property>
<property name="topMargin">
- <number>3</number>
+ <number>0</number>
</property>
<property name="rightMargin">
- <number>3</number>
+ <number>0</number>
</property>
<property name="bottomMargin">
- <number>3</number>
+ <number>0</number>
</property>
<item>
+ <widget class="QLabel" name="label">
+ <property name="text">
+ <string>Configure files download:</string>
+ </property>
+ </widget>
+ </item>
+ <item>
<widget class="QRadioButton" name="syncEverythingRadioButton">
<property name="text">
<string>Download everything</string>
@@ -226,8 +236,6 @@
</item>
</layout>
</widget>
- <resources>
- <include location="../../../../client.qrc"/>
- </resources>
+ <resources/>
<connections/>
</ui>