diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-05-19 18:36:44 +0200 |
|---|---|---|
| committer | rating89us <rating89us@rating89us.com> | 2021-05-29 04:02:19 +0200 |
| commit | 9d3864b7f09efc65d2f0e64f6579d5a3974721a2 (patch) | |
| tree | a4d0a39761280c3f6c744d61c433fb9ef3d08482 /components/TextPlain.qml | |
| parent | 937cb9825672d07a1917d2d9daf823802ec31d1b (diff) | |
| download | monzero-gui-9d3864b7f09efc65d2f0e64f6579d5a3974721a2.tar.gz monzero-gui-9d3864b7f09efc65d2f0e64f6579d5a3974721a2.tar.xz monzero-gui-9d3864b7f09efc65d2f0e64f6579d5a3974721a2.zip | |
Implement tooltips in multiple pages and components
Diffstat (limited to 'components/TextPlain.qml')
| -rw-r--r-- | components/TextPlain.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/TextPlain.qml b/components/TextPlain.qml index 822f86a2..1dfe32fd 100644 --- a/components/TextPlain.qml +++ b/components/TextPlain.qml @@ -13,6 +13,9 @@ Text { property string themeTransitionBlackColor: "" property string themeTransitionWhiteColor: "" property alias tooltip: tooltip.text + property alias tooltipLeft: tooltip.tooltipLeft + property alias tooltipIconVisible: tooltip.tooltipIconVisible + property alias tooltipPopup: tooltip.tooltipPopup font.family: MoneroComponents.Style.fontMedium.name font.bold: false font.pixelSize: 14 @@ -30,6 +33,6 @@ Text { MoneroComponents.Tooltip { id: tooltip anchors.top: parent.top - anchors.left: parent.right + anchors.left: tooltipIconVisible ? parent.right : parent.left } } |
