summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-09 21:15:55 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-10 08:02:56 -0800
commit4b3761861e963200a47f83dbd336d360240f6fb5 (patch)
treec6a7d1be01967bbd0f72b0f1c20efd73fc39d302 /mobile-widgets
parent57024d188ca74de294393c4b4f2fee2c241752d2 (diff)
downloadsubsurface-4b3761861e963200a47f83dbd336d360240f6fb5.tar.gz
mobile/summary: expand refresh button
Buttons ignore the width of the enclosed label and base their width on the illogically named implicitWidth instead. Also translate the button text. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/DiveSummary.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveSummary.qml b/mobile-widgets/qml/DiveSummary.qml
index bf206cc3e..ef8892976 100644
--- a/mobile-widgets/qml/DiveSummary.qml
+++ b/mobile-widgets/qml/DiveSummary.qml
@@ -82,8 +82,8 @@ Kirigami.ScrollablePage {
TemplateButton {
/* Replace by signals from the core in due course. */
- text: "Refresh"
- width: headerColumnWidth
+ text: qsTr("Refresh")
+ implicitWidth: headerColumnWidth
onClicked: reload()
}
TemplateComboBox {