mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
Transfer: don't create offline tx before wallet is synced
This commit is contained in:
parent
96cca79b70
commit
a10d41642a
1 changed files with 1 additions and 1 deletions
|
@ -957,7 +957,7 @@ Rectangle {
|
|||
visible: persistentSettings.transferShowAdvanced && appWindow.walletMode >= 2
|
||||
title: qsTr("Offline transaction signing") + translationManager.emptyString
|
||||
button1.text: qsTr("Create") + translationManager.emptyString
|
||||
button1.enabled: appWindow.viewOnly && pageRoot.checkInformation()
|
||||
button1.enabled: appWindow.viewOnly && pageRoot.checkInformation() && appWindow.daemonSynced
|
||||
button1.onClicked: {
|
||||
console.log("Transfer: saveTx Clicked")
|
||||
var priority = priorityModelV5.get(priorityDropdown.currentIndex).priority
|
||||
|
|
Loading…
Reference in a new issue