Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion dcc-network/qml/PageHotspot.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Controls 2.15
Expand Down Expand Up @@ -291,6 +291,12 @@ DccObject {
}
editDlg.config["802-11-wireless-security"].psk = text
}
// 在显示明文时禁用右键菜单
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.RightButton
enabled: parent.echoMode === TextInput.Password
}
}
}
NetItemEditor {
Expand Down