Emit notify::active here, when changing the value of this property.
2006-02-22 Matthias Clasen <mclasen@redhat.com> * gtk/gtkradiobutton.c (gtk_radio_button_clicked): Emit notify::active here, when changing the value of this property. (#331651)
This commit is contained in:

committed by
Matthias Clasen

parent
44c2651932
commit
cd3d0107c6
@ -1,5 +1,8 @@
|
|||||||
2006-02-22 Matthias Clasen <mclasen@redhat.com>
|
2006-02-22 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkradiobutton.c (gtk_radio_button_clicked): Emit notify::active
|
||||||
|
here, when changing the value of this property. (#331651)
|
||||||
|
|
||||||
* gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
|
* gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
|
||||||
make the tab menu keynavigatable. (#331440)
|
make the tab menu keynavigatable. (#331440)
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2006-02-22 Matthias Clasen <mclasen@redhat.com>
|
2006-02-22 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkradiobutton.c (gtk_radio_button_clicked): Emit notify::active
|
||||||
|
here, when changing the value of this property. (#331651)
|
||||||
|
|
||||||
* gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
|
* gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
|
||||||
make the tab menu keynavigatable. (#331440)
|
make the tab menu keynavigatable. (#331440)
|
||||||
|
|
||||||
|
@ -650,8 +650,12 @@ gtk_radio_button_clicked (GtkButton *button)
|
|||||||
gtk_widget_set_state (GTK_WIDGET (button), new_state);
|
gtk_widget_set_state (GTK_WIDGET (button), new_state);
|
||||||
|
|
||||||
if (toggled)
|
if (toggled)
|
||||||
|
{
|
||||||
gtk_toggle_button_toggled (toggle_button);
|
gtk_toggle_button_toggled (toggle_button);
|
||||||
|
|
||||||
|
g_object_notify (G_OBJECT (toggle_button), "active");
|
||||||
|
}
|
||||||
|
|
||||||
_gtk_button_set_depressed (button, depressed);
|
_gtk_button_set_depressed (button, depressed);
|
||||||
|
|
||||||
gtk_widget_queue_draw (GTK_WIDGET (button));
|
gtk_widget_queue_draw (GTK_WIDGET (button));
|
||||||
|
Reference in New Issue
Block a user