From 36ee6c121996ede96f838964b51e950d3c957491 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 11 May 2014 18:38:36 +0200 Subject: MateColorSelectionDialog: Allow to use header bar with GTK 3.12 --- tools/mate-color-select.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools') diff --git a/tools/mate-color-select.c b/tools/mate-color-select.c index b2da648..5ef4785 100644 --- a/tools/mate-color-select.c +++ b/tools/mate-color-select.c @@ -42,7 +42,12 @@ main (int argc, char **argv) /* initialize GTK+ */ gtk_init (&argc, &argv); +#if GTK_CHECK_VERSION (3, 12, 0) + color_dialog = mate_color_selection_dialog_new_with_header_bar (_("MATE Color Selection")); + gtk_header_bar_set_show_close_button (gtk_dialog_get_header_bar (GTK_DIALOG (color_dialog)), TRUE); +#else color_dialog = mate_color_selection_dialog_new (_("MATE Color Selection")); +#endif /* quit signal */ g_signal_connect (color_dialog, "destroy", gtk_main_quit, NULL); -- cgit v1.2.1