renamed project

This commit is contained in:
Blue 2023-12-03 11:39:48 -03:00
parent f547170728
commit da9513e4d9
Signed by: blue
GPG key ID: 9B203B252A63EE38
4 changed files with 20 additions and 16 deletions

View file

@ -1,4 +1,4 @@
qt_add_qml_module(megpieQml
qt_add_qml_module(magpieQml
URI "qml"
VERSION 1.0
STATIC
@ -10,4 +10,4 @@ qt_add_qml_module(megpieQml
Welcome.qml
)
target_link_libraries(megpie PRIVATE megpieQml)
target_link_libraries(magpie PRIVATE magpieQml)

View file

@ -4,7 +4,7 @@ import QtQuick.Layouts
Page {
property string address
property bool valid
property bool valid: false
signal back()
signal success(address: string)
@ -111,7 +111,11 @@ Page {
}
function check () {
valid = false;
if (valid) {
success(address);
return;
}
modal.inProgress = true;
status.text = qsTr("Checking") + " " + address + "...";
modal.open()