diff options
author | Laszlo Boros <[email protected]> | 2013-07-18 00:55:51 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-08-11 17:56:00 +0200 |
commit | f5e3f9b082442139614a903a1cd84474a1adcb6e (patch) | |
tree | 26277cc8590e164117e2b818399769c44ef50ac8 /src | |
parent | 002703a0f4b6167dd6421c3a0a96795c6386c840 (diff) | |
download | mate-polkit-f5e3f9b082442139614a903a1cd84474a1adcb6e.tar.bz2 mate-polkit-f5e3f9b082442139614a903a1cd84474a1adcb6e.tar.xz |
GTK3 compatibility
Diffstat (limited to 'src')
-rw-r--r-- | src/polkitmateauthenticationdialog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/polkitmateauthenticationdialog.c b/src/polkitmateauthenticationdialog.c index 3f02b19..22c8e51 100644 --- a/src/polkitmateauthenticationdialog.c +++ b/src/polkitmateauthenticationdialog.c @@ -536,7 +536,9 @@ polkit_mate_authentication_dialog_constructed (GObject *object) content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog)); action_area = gtk_dialog_get_action_area (GTK_DIALOG (dialog)); + #if !GTK_CHECK_VERSION(3, 0, 0) gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); + #endif gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); gtk_box_set_spacing (GTK_BOX (content_area), 2); /* 2 * 5 + 2 = 12 */ gtk_container_set_border_width (GTK_CONTAINER (action_area), 5); @@ -997,7 +999,11 @@ polkit_mate_authentication_dialog_run_until_response_for_prompt (PolkitMateAuthe response = gtk_dialog_run (GTK_DIALOG (dialog)); + #if GTK_CHECK_VERSION(3, 0, 0) + gtk_widget_hide (dialog->priv->table_alignment); + #else gtk_widget_hide_all (dialog->priv->table_alignment); + #endif gtk_widget_set_no_show_all (dialog->priv->table_alignment, TRUE); dialog->priv->is_running = FALSE; |