diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-11-06 23:35:16 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-11-26 19:36:12 +0100 |
| commit | d4657804cd35b7d25dca67aa16c3eeb35140eb44 (patch) | |
| tree | 7cf048fb4537c4113df63b5ffa3b458160c88b10 /components/StandardDialog.qml | |
| parent | 482bd30c0066c78b0ce69d375b2831193a395475 (diff) | |
| download | monzero-gui-d4657804cd35b7d25dca67aa16c3eeb35140eb44.tar.gz monzero-gui-d4657804cd35b7d25dca67aa16c3eeb35140eb44.tar.xz monzero-gui-d4657804cd35b7d25dca67aa16c3eeb35140eb44.zip | |
resized standard dialog
Diffstat (limited to 'components/StandardDialog.qml')
| -rw-r--r-- | components/StandardDialog.qml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/components/StandardDialog.qml b/components/StandardDialog.qml index 8c7a05d3..8f7e0e8d 100644 --- a/components/StandardDialog.qml +++ b/components/StandardDialog.qml @@ -40,9 +40,11 @@ Window { modality: Qt.ApplicationModal flags: Qt.Window | Qt.FramelessWindowHint property alias title: dialogTitle.text - property alias content: dialogContent.text + property alias text: dialogContent.text + property alias content: root.text property alias cancelVisible: cancelButton.visible property alias okVisible: okButton.visible + property var icon // same signals as Dialog has signal accepted() @@ -54,8 +56,8 @@ Window { } // TODO: implement without hardcoding sizes - width: 600 - height: 480 + width: 800 + height: 580 ColumnLayout { id: mainLayout @@ -80,6 +82,8 @@ Window { RowLayout { TextArea { id : dialogContent + width: 750 + height: 480 Layout.fillWidth: true font.family: "Arial" textFormat: TextEdit.AutoText |
