diff options
| author | Jens Bache-Wiig <jens.bache-wiig@digia.com> | 2013-06-03 15:53:50 +0200 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-06-03 22:25:51 +0200 |
| commit | 4e5bf941f1b3089c22392bb5416d44cb8defe47d (patch) | |
| tree | e459ec6d62245341e531be599121d0a0e1b8ae76 /src/controls/TableView.qml | |
| parent | 207366038543adf5ee6384ff2577410f48df7a13 (diff) | |
Improve default size for several controls
We should set this to some decent default value that doesn't
look wrong. Note that the width and height definition in
TextArea could cause conflicts when used in layouts.
Change-Id: I815ff96c02f9a9a76c07d57181f3a24291c83c52
Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'src/controls/TableView.qml')
| -rw-r--r-- | src/controls/TableView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml index f6a8ed4bf..a71264da0 100644 --- a/src/controls/TableView.qml +++ b/src/controls/TableView.qml @@ -359,8 +359,8 @@ ScrollView { Accessible.role: Accessible.Table - width: 200 - height: 200 + implicitWidth: 200 + implicitHeight: 150 frameVisible: true __scrollBarTopMargin: Qt.platform.os === "mac" ? headerrow.height : 0 |
