summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qml/components/ConferenceSwitcher.qml4
-rw-r--r--src/theme.cpp1
2 files changed, 3 insertions, 2 deletions
diff --git a/qml/components/ConferenceSwitcher.qml b/qml/components/ConferenceSwitcher.qml
index f2f7292..7808820 100644
--- a/qml/components/ConferenceSwitcher.qml
+++ b/qml/components/ConferenceSwitcher.qml
@@ -57,10 +57,10 @@ Rectangle {
ListView {
interactive: false
anchors.top: subTitle.bottom
- anchors.topMargin: Theme.margins.twenty
+ anchors.topMargin: Theme.margins.forty
height: parent.height - subTitle.height
width: parent.width
- spacing: Theme.margins.ten
+ spacing: Theme.margins.forty
model: SortFilterModel {
id: sortModel
sortRole: "title"
diff --git a/src/theme.cpp b/src/theme.cpp
index ab7f327..b7a8e48 100644
--- a/src/theme.cpp
+++ b/src/theme.cpp
@@ -166,6 +166,7 @@ Theme::Theme(QObject *parent)
m_margins->insert(QLatin1String("fifteen"), QVariant(applyRatio(15)));
m_margins->insert(QLatin1String("twenty"), QVariant(applyRatio(20)));
m_margins->insert(QLatin1String("thirty"), QVariant(applyRatio(30)));
+ m_margins->insert(QLatin1String("forty"), QVariant(applyRatio(40)));
}
int Theme::applyFontRatio(const int value)