diff options
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-port-entry.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/widgets/misc/e-port-entry.c b/widgets/misc/e-port-entry.c index 84a514b653..470249a772 100644 --- a/widgets/misc/e-port-entry.c +++ b/widgets/misc/e-port-entry.c @@ -362,10 +362,6 @@ e_port_entry_init (EPortEntry *port_entry) gtk_cell_layout_add_attribute ( GTK_CELL_LAYOUT (port_entry), renderer, "text", PORT_DESC_COLUMN); - - g_signal_connect ( - port_entry, "notify::security-method", - G_CALLBACK (port_entry_method_changed), NULL); } GtkWidget * @@ -474,6 +470,8 @@ e_port_entry_set_security_method (EPortEntry *port_entry, port_entry->priv->method = method; + port_entry_method_changed (port_entry); + g_object_notify (G_OBJECT (port_entry), "security-method"); } |