diff options
| author | Michael Biebl <biebl@debian.org> | 2024-02-22 17:22:03 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-02-22 17:22:03 +0100 |
| commit | ee7b97d8af11fb1c2cbcd4df0deb298ff906fa8b (patch) | |
| tree | b0978e9f3ed4e2e9b727844e57637783ca47a8ef /src/nmtui | |
| parent | d8ad0e3c21e712308cf070716acc421adfabd7d3 (diff) | |
| parent | bba2e4b4de668db525cbfdfc35292e5a0b51671a (diff) | |
Update upstream source from tag 'upstream/1.46.0'
Update to upstream version '1.46.0' with Debian dir 8c30a24f4e6f4278d9943aef82e6ae63c4528df5
Diffstat (limited to 'src/nmtui')
| -rw-r--r-- | src/nmtui/nmt-page-bridge.c | 2 | ||||
| -rw-r--r-- | src/nmtui/nmt-password-dialog.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nmtui/nmt-page-bridge.c b/src/nmtui/nmt-page-bridge.c index e84af1d8..61bc4d06 100644 --- a/src/nmtui/nmt-page-bridge.c +++ b/src/nmtui/nmt-page-bridge.c @@ -39,7 +39,7 @@ static gboolean bridge_connection_type_filter(GType connection_type, gpointer user_data) { return (connection_type == NM_TYPE_SETTING_WIRED || connection_type == NM_TYPE_SETTING_WIRELESS - || connection_type == NM_TYPE_SETTING_VLAN); + || connection_type == NM_TYPE_SETTING_VLAN || connection_type == NM_TYPE_SETTING_BOND); } static void diff --git a/src/nmtui/nmt-password-dialog.c b/src/nmtui/nmt-password-dialog.c index 75194d7b..6f1a5f03 100644 --- a/src/nmtui/nmt-password-dialog.c +++ b/src/nmtui/nmt-password-dialog.c @@ -139,7 +139,7 @@ nmt_password_dialog_constructed(GObject *object) nmt_newt_widget_set_padding(widget, 4, 0, 1, 0); flags = NMT_NEWT_ENTRY_NONEMPTY; - if (secret->is_secret) + if (secret->is_secret && !secret->force_echo) flags |= NMT_NEWT_ENTRY_PASSWORD; widget = nmt_newt_entry_new(30, flags); if (secret->value) |