We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241ba60 commit 8588287Copy full SHA for 8588287
1 file changed
dcc-network/qml/PageHotspot.qml
@@ -1,4 +1,4 @@
1
-// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.
+// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
2
// SPDX-License-Identifier: GPL-3.0-or-later
3
import QtQuick 2.15
4
import QtQuick.Controls 2.15
@@ -291,6 +291,12 @@ DccObject {
291
}
292
editDlg.config["802-11-wireless-security"].psk = text
293
294
+ // 在显示明文时禁用右键菜单
295
+ MouseArea {
296
+ anchors.fill: parent
297
+ acceptedButtons: Qt.RightButton
298
+ enabled: parent.echoMode === TextInput.Password
299
+ }
300
301
302
NetItemEditor {
0 commit comments