aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Eftevaag <oliver.eftevaag@qt.io>2021-07-14 23:30:42 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-07-19 09:44:37 +0000
commit18489cb017dddfa3f2857152831ab0e55a5d9bde (patch)
treefb5b55cdcada8a0ac5390314b45a293f41b1b3cb
parentfa5fc93958c77ece5d005b472c6220230cfc05fa (diff)
QQuickFontDialog: Minor visual adjustments for universal and material
These changes are subjective, and might not be seen as an improvement by everyone. Personally, I felt that some space could be removed between the text fields and list views for the material style, and between the list views and group boxes for the universal style. Task-number: QTBUG-87799 Change-Id: I2a94caaa2304ccef0c9709bbfe9a0cd9b56e2034 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit ef9e58808c42ad52b3481de342309d8c4e9e8ee9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/quickdialogs2/quickdialogs2quickimpl/qml/+Material/FontDialog.qml3
-rw-r--r--src/quickdialogs2/quickdialogs2quickimpl/qml/+Universal/FontDialog.qml2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/quickdialogs2/quickdialogs2quickimpl/qml/+Material/FontDialog.qml b/src/quickdialogs2/quickdialogs2quickimpl/qml/+Material/FontDialog.qml
index 8a660cb7..51134680 100644
--- a/src/quickdialogs2/quickdialogs2quickimpl/qml/+Material/FontDialog.qml
+++ b/src/quickdialogs2/quickdialogs2quickimpl/qml/+Material/FontDialog.qml
@@ -109,6 +109,9 @@ FontDialogImpl {
contentItem: FontDialogContent {
id: content
+ familyEdit.bottomPadding: 8
+ styleEdit.bottomPadding: 8
+ sizeEdit.bottomPadding: 8
}
footer: RowLayout {
diff --git a/src/quickdialogs2/quickdialogs2quickimpl/qml/+Universal/FontDialog.qml b/src/quickdialogs2/quickdialogs2quickimpl/qml/+Universal/FontDialog.qml
index 2d558066..1bd3092e 100644
--- a/src/quickdialogs2/quickdialogs2quickimpl/qml/+Universal/FontDialog.qml
+++ b/src/quickdialogs2/quickdialogs2quickimpl/qml/+Universal/FontDialog.qml
@@ -109,7 +109,7 @@ FontDialogImpl {
contentItem: FontDialogContent {
id: content
- rowSpacing: 24
+ rowSpacing: 12
}
footer: RowLayout {