From eaec0edf0d75e0509edbb46e8466b7c6698f6063 Mon Sep 17 00:00:00 2001 From: David Odin Date: Mon, 22 Nov 2004 21:13:25 +0000 Subject: [PATCH] correctly initialize the Antialising check box. Reported by Zigomar. * plug-ins/gfig/gfig-dialog.c: correctly initialize the Antialising check box. Reported by Zigomar. --- ChangeLog | 5 +++++ plug-ins/gfig/gfig-dialog.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index b8f5cfa212..513c244d6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-22 DindinX + + * plug-ins/gfig/gfig-dialog.c: correctly initialize the Antialising + check box. Reported by Zigomar. + 2004-11-22 Michael Natterer * plug-ins/script-fu/script-fu-scripts.c: sort the SFMenu structs diff --git a/plug-ins/gfig/gfig-dialog.c b/plug-ins/gfig/gfig-dialog.c index 66c9615a95..84a8612d31 100644 --- a/plug-ins/gfig/gfig-dialog.c +++ b/plug-ins/gfig/gfig-dialog.c @@ -1192,6 +1192,7 @@ options_dialog_callback (GtkWidget *widget, toggle = gtk_check_button_new_with_label (_("Antialiasing")); gtk_box_pack_start (GTK_BOX (main_vbox), toggle, FALSE, FALSE, 6); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), selopt.antia); g_signal_connect (toggle, "toggled", G_CALLBACK (gimp_toggle_button_update), &selopt.antia);