added 'insert' button and 'show password' button for PageSetupWizardCredentials

This commit is contained in:
vladimir.kuznetsov 2023-07-31 14:29:49 +09:00
parent 66f9a82f31
commit aa66133813
10 changed files with 53 additions and 11 deletions

View file

@ -11,17 +11,17 @@ Item {
readonly property int defaultMargin: 20
function isMobile() {
if (Qt.platform.os == "android" ||
Qt.platform.os == "ios") {
if (Qt.platform.os === "android" ||
Qt.platform.os === "ios") {
return true
}
return false
}
function isDesktop() {
if (Qt.platform.os == "windows" ||
Qt.platform.os == "linux" ||
Qt.platform.os == "osx") {
if (Qt.platform.os === "windows" ||
Qt.platform.os === "linux" ||
Qt.platform.os === "osx") {
return true
}
return false