Updated timer delay amount

This commit is contained in:
staked-smart-ace 2021-01-12 22:17:24 +04:00 committed by Iuri Matias
parent 2f2b06fb5e
commit a4ffc56d56
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ ModalPopup {
anchors.leftMargin: Style.current.smallPadding
anchors.verticalCenter: linkText.verticalCenter
textToCopy: popup.getStatusText.substr(popup.getStatusText.indexOf("https"))
textTooltip: "Copied \"" + popup.getStatusText.substr(popup.getStatusText.indexOf("https")) + "\" to clipboard"
textTooltip: qsTr('Copied "%1" to clipboard').arg(popup.getStatusText.substr(popup.getStatusText.indexOf("https")))
}
}

View File

@ -56,7 +56,7 @@ Rectangle {
Timer {
id:showTimer
interval: 500
interval: 300
running: parent.showTooltip && !toolTip.visible
onTriggered: {
toolTip.visible = true;
@ -65,7 +65,7 @@ Rectangle {
Timer {
id:hideTimer
interval: 1500
interval: 2500
running: toolTip.visible
onTriggered: {
toolTip.visible = false;