Package: network-manager / 0.9.10.0-7

0011-tui-fix-updating-of-NmtPasswordFields-passwords-bgo-.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From: Dan Williams <dcbw@redhat.com>
Date: Wed, 3 Sep 2014 17:43:25 -0500
Subject: tui: fix updating of NmtPasswordFields passwords (bgo #733002)

The actual entry is a sub-widget, and was getting updated when the
user changed the password, but those changes were not being
propagated to the NmtPasswordFields object's 'password' property.

https://bugzilla.gnome.org/show_bug.cgi?id=733002

(cherry picked from commit 82b0ea87075144650979d344f34c09c7111c4a4e)
---
 tui/nmt-password-fields.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tui/nmt-password-fields.c b/tui/nmt-password-fields.c
index ec8b521..be75b74 100644
--- a/tui/nmt-password-fields.c
+++ b/tui/nmt-password-fields.c
@@ -156,6 +156,10 @@ nmt_password_fields_constructed (GObject *object)
 	} else
 		g_clear_object (&priv->show_password);
 
+	g_object_bind_property (priv->entry, "text",
+	                        object, "password",
+	                        G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
+
 	G_OBJECT_CLASS (nmt_password_fields_parent_class)->constructed (object);
 }