diff options
| author | Liang Qi <liang.qi@digia.com> | 2014-08-04 15:33:06 +0200 |
|---|---|---|
| committer | Shawn Rutledge <shawn.rutledge@digia.com> | 2014-08-05 17:03:10 +0200 |
| commit | 2ae698e2cb403dae021596606d14ff23ec48ec4a (patch) | |
| tree | 45585f7abc04082d037c5760b1543674667d8e4d /src | |
| parent | b870fe9a7a7dc7830cae498e111fda0ff9c5f98d (diff) | |
QtQuick.Dialogs FontDialog: fix a binding loop issue
Change-Id: Ie57b3900bd5a17fa4a05af945eeea98d2b12ffbd
Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/dialogs/DefaultFontDialog.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dialogs/DefaultFontDialog.qml b/src/dialogs/DefaultFontDialog.qml index 20377dc1b..6c308caf4 100644 --- a/src/dialogs/DefaultFontDialog.qml +++ b/src/dialogs/DefaultFontDialog.qml @@ -125,7 +125,7 @@ AbstractFontDialog { id: fontListView Layout.fillWidth: true Layout.fillHeight: true - Layout.minimumWidth: fontColumn.width + content.outerSpacing + Layout.minimumWidth: fontColumn.width headerVisible: false function reset() { fontModel.findIndex() @@ -184,6 +184,7 @@ AbstractFontDialog { content.font.family = fontModel.get(row).family positionViewAtRow(row, ListView.Contain) } + } TableView { id: weightListView |
