diff options
Diffstat (limited to 'capplet')
-rw-r--r-- | capplet/gsm-app-dialog.c | 2 | ||||
-rw-r--r-- | capplet/gsm-properties-dialog.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/capplet/gsm-app-dialog.c b/capplet/gsm-app-dialog.c index 464bd1f..c544783 100644 --- a/capplet/gsm-app-dialog.c +++ b/capplet/gsm-app-dialog.c @@ -255,7 +255,9 @@ gsm_app_dialog_constructor (GType type, setup_dialog (dialog); +#if !GTK_CHECK_VERSION (3, 14, 0) gtk_widget_show_all (GTK_WIDGET (dialog)); +#endif return G_OBJECT (dialog); } diff --git a/capplet/gsm-properties-dialog.c b/capplet/gsm-properties-dialog.c index 907bb99..7d03abc 100644 --- a/capplet/gsm-properties-dialog.c +++ b/capplet/gsm-properties-dialog.c @@ -702,7 +702,9 @@ gsm_properties_dialog_constructor (GType type, setup_dialog (dialog); +#if !GTK_CHECK_VERSION (3, 14, 0) gtk_widget_show (GTK_WIDGET (dialog)); +#endif return G_OBJECT (dialog); } |