From 2fc7b791ff8648bbd8d3a81ad8c37229e8a2129a Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Fri, 1 Jul 2016 14:35:40 +0200 Subject: [PATCH] QmlDesigner: Use smaller font in item library This allows to show more items in the library. While we get more and more components it is important that we can show the increasing amount of items properly. Change-Id: Ifc5db011b65b7accf96af5192ce2702b6f112da6 Reviewed-by: Alessandro Portale --- .../qmldesigner/itemLibraryQmlSources/ItemDelegate.qml | 2 +- .../qmldesigner/itemLibraryQmlSources/ItemsView.qml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml b/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml index cd74f453f9a..d5b0e37b6f6 100644 --- a/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml +++ b/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml @@ -48,7 +48,7 @@ Rectangle { Text { id: text - font.pixelSize: 11 + font.pixelSize: 9 elide: Text.ElideMiddle wrapMode: Text.WordWrap anchors.top: itemIcon.bottom diff --git a/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml b/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml index 9f1c33ea765..3edab94482b 100644 --- a/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml +++ b/share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml @@ -67,12 +67,12 @@ ScrollView { property color backgroundColor: "#4f4f4f" property color lighterBackgroundColor: "#5f5f5f" - property int textWidth: 55 - property int textHeight: 26 + property int textWidth: 58 + property int textHeight: 22 - property int cellHorizontalMargin: 5 - property int cellVerticalSpacing: 3 - property int cellVerticalMargin: 7 + property int cellHorizontalMargin: 1 + property int cellVerticalSpacing: 2 + property int cellVerticalMargin: 4 // the following depend on the actual shape of the item delegate property int cellWidth: textWidth + 2 * cellHorizontalMargin