From ee1ac62eb6fc5ba7b3fea0680a2d91b099e26717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Mon, 28 Oct 2013 04:22:40 +0100 Subject: [PATCH] Fix theme font size calculation --- .../qmlpackages/desktop/contents/explorer/WidgetExplorer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shell/qmlpackages/desktop/contents/explorer/WidgetExplorer.qml b/src/shell/qmlpackages/desktop/contents/explorer/WidgetExplorer.qml index ee0646b22..61bf99952 100644 --- a/src/shell/qmlpackages/desktop/contents/explorer/WidgetExplorer.qml +++ b/src/shell/qmlpackages/desktop/contents/explorer/WidgetExplorer.qml @@ -31,9 +31,9 @@ Item { width: 240 height: 800//Screen.height //this is used to perfectly align the filter field and delegates - property int cellWidth: theme.mSize(defaultFont).width * 10 + property int cellWidth: theme.mSize(theme.defaultFont).width * 10 - property int minimumWidth: theme.mSize(defaultFont).width * 12 + property int minimumWidth: theme.mSize(theme.defaultFont).width * 12 property int minimumHeight: 800//topBar.height + list.delegateHeight + (widgetExplorer.orientation == Qt.Horizontal ? scrollBar.height : 0) + 4 property Item getWidgetsButton