diff options
author | kwadronaut <kwadronaut@leap.se> | 2021-02-18 17:05:32 +0100 |
---|---|---|
committer | kwadronaut <kwadronaut@leap.se> | 2021-02-18 17:05:32 +0100 |
commit | d9c543afcddc1b602495c0595588fae9699aecb0 (patch) | |
tree | 86dffd504a9ff0dae58595a2cd9c281598bd5fbe /gui/qml/AboutDialog.qml | |
parent | f73c1f22b128d3cdfbe19e009537ed9c52c1f464 (diff) |
swap 3 dots for ellipsis
Diffstat (limited to 'gui/qml/AboutDialog.qml')
-rw-r--r-- | gui/qml/AboutDialog.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/qml/AboutDialog.qml b/gui/qml/AboutDialog.qml index 7c673d2..544d375 100644 --- a/gui/qml/AboutDialog.qml +++ b/gui/qml/AboutDialog.qml @@ -11,7 +11,7 @@ MessageDialog { var _name = ctx ? ctx.appName : "vpn" var _provider = ctx ? ctx.provider : "unknown" var _donateURL = ctx ? ctx.donateURL : "" - var _tosURL = ctx ? ctx.tosURL : "..." + var _tosURL = ctx ? ctx.tosURL : "…" var _donateTXT = "" if (_donateURL) { //: donation text of the about dialog |