From 61f8ed9c2a5358f843babff77e60322aeba60d86 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 25 Nov 2014 08:18:21 -0500 Subject: [PATCH] tui: fix a bug that hid the IP method popup (rh #1167710) --- clients/tui/nmt-editor-section.c | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/tui/nmt-editor-section.c b/clients/tui/nmt-editor-section.c index ad970a90d7..ff463f7fe3 100644 --- a/clients/tui/nmt-editor-section.c +++ b/clients/tui/nmt-editor-section.c @@ -196,6 +196,7 @@ nmt_editor_section_set_property (GObject *object, priv->header_widget = g_value_get_object (value); if (priv->header_widget) g_object_ref_sink (priv->header_widget); + rebuild_header (section); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);