diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-11 20:30:23 +0100 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-11 20:30:23 +0100 |
| commit | fd4619628cf0e87cc6e06b44b6a9193fb8af2218 (patch) | |
| tree | 7a516fb2e2ab288a29613098c8064e03535ee219 /components | |
| parent | b757cc28b8055c7811769c80fcbda569a66750d7 (diff) | |
| parent | 3c8a552522ba241539cafca6c70b671de574a8ef (diff) | |
| download | monzero-gui-fd4619628cf0e87cc6e06b44b6a9193fb8af2218.tar.gz monzero-gui-fd4619628cf0e87cc6e06b44b6a9193fb8af2218.tar.xz monzero-gui-fd4619628cf0e87cc6e06b44b6a9193fb8af2218.zip | |
Merge pull request #547
3c8a552 fix addressbook button width (Jaquee)
6a666ea fix dynamic width on send btn (Jaquee)
1918c5e fix dynamic button width (Jaquee)
Diffstat (limited to 'components')
| -rw-r--r-- | components/StandardButton.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/StandardButton.qml b/components/StandardButton.qml index f1253cd9..bb2f4d94 100644 --- a/components/StandardButton.qml +++ b/components/StandardButton.qml @@ -43,8 +43,8 @@ Item { signal clicked() // Dynamic label width - width: label.contentWidth + 20 - Layout.minimumWidth: 100 + Layout.minimumWidth: (label.contentWidth > 100)? label.contentWidth + 20 : 100 + Rectangle { |
