-
Notifications
You must be signed in to change notification settings - Fork 49
Various fixes to Send, WalletController, and general QML #477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
qml/components/BlockClock.qml
Outdated
@@ -5,7 +5,7 @@ | |||
import QtQuick 2.15 | |||
import QtQuick.Controls 2.15 | |||
import QtQuick.Layouts 1.15 | |||
import Qt.labs.settings 1.0 | |||
import QtCore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Settings
QML Type was introduced in QtCore
in Qt 6.5.
Our minimum supported Qt version is currently 6.2.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A related discussion is here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok good to know. I'll drop that commit then.
What is the workflow in the UI for that? |
The last 2 commits don't look as a complete solution. Consider mouse clicking on the "minus" button in the "Send" view:
|
I think i resolved those problems now as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested c20390d.
When closing the app:
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:258: TypeError: Cannot read property 'label' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:234: TypeError: Cannot read property 'amount' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:212: TypeError: Cannot read property 'amount' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:178: TypeError: Cannot read property 'address' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:31: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:19: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:269: TypeError: Cannot read property 'coinsListModel' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:270: TypeError: Cannot read property 'coinsListModel' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:161: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:150: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:139: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:127: TypeError: Cannot read property 'recipients' of null
2025-07-28T07:56:04Z GUI: qrc:/qml/pages/wallet/Send.qml:116: TypeError: Cannot read property 'recipients' of null
Updated the commits and I believe this is resolved fully now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 18e008c, tested on Ubuntu 24.04.
The following errors are resolved with these commits.
Missing id for buttonText in EllipsesMenuToggleItem
Null Property after toggling off Multiple Recipients toggle and removing Recipients with the "-" icon
Null properties after all wallets are unloaded