Skip to content

Commit

Permalink
gtk+3: bump to 3.24.43
Browse files Browse the repository at this point in the history
  • Loading branch information
echawk committed Aug 9, 2024
1 parent 422ebc6 commit a92c868
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions extra/gtk+3/checksums
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
46777a428699d6e2643a6d4c0929168912b760011706cb95b67807bd777e005fe5
5feab2bad81e6b5906895f70ddce6227cf96a6a14b16af0ef72c79991a48ddf486
8b8bf563e74f720990030791f8e408db6099813a6290c38ab812231dbd10eb0cb8
09d6f9e59422724a1fead2bd2103ab0569f823da04e1411a338ae9892bedb2652e
ae2adb1436f0ae97532b534673a14c4e2fe50e4397554e00fd58fa51c9a6bf2841
05cf248d5d857ac14fd5904671ed53d08f125ebc74f0e81f270fb8186ddb000540
23 changes: 12 additions & 11 deletions extra/gtk+3/patches/02-no-accessibility.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1721,7 +1721,7 @@
g_object_notify (G_OBJECT (dialog), "message-type");
--- a/gtk/gtkmodelbutton.c
+++ b/gtk/gtkmodelbutton.c
@@ -247,15 +247,6 @@
@@ -248,16 +248,6 @@ gtk_model_button_update_state (GtkModelButton *button,
gtk_css_gadget_set_state (button->gadget, state);

gtk_css_gadget_set_state (button->indicator_gadget, indicator_state);
Expand All @@ -1730,14 +1730,15 @@
- button->role == GTK_BUTTON_ROLE_RADIO)
- {
- AtkObject *object = _gtk_widget_peek_accessible (GTK_WIDGET (button));
- if (object)
- atk_object_notify_state_change (object, ATK_STATE_CHECKED,
- (indicator_state & GTK_STATE_FLAG_CHECKED));
- gboolean was_checked = (previous_flags & GTK_STATE_FLAG_CHECKED) != 0;
- gboolean is_checked = (indicator_state & GTK_STATE_FLAG_CHECKED) != 0;
- if (object && (was_checked != is_checked))
- atk_object_notify_state_change (object, ATK_STATE_CHECKED, is_checked);
- }
}

static void
@@ -310,17 +301,13 @@
@@ -312,17 +302,13 @@ gtk_model_button_direction_changed (GtkWidget *widget,
static void
update_node_name (GtkModelButton *button)
{
Expand All @@ -1755,7 +1756,7 @@
if (button->menu_name)
{
indicator_name = I_("arrow");
@@ -334,13 +321,11 @@
@@ -336,13 +322,11 @@ update_node_name (GtkModelButton *button)
break;

case GTK_BUTTON_ROLE_CHECK:
Expand All @@ -1769,7 +1770,7 @@
indicator_name = I_("radio");
indicator_visible = TRUE;
break;
@@ -352,8 +337,6 @@
@@ -354,8 +338,6 @@ update_node_name (GtkModelButton *button)
if (button->iconic)
indicator_visible = FALSE;

Expand All @@ -1778,7 +1779,7 @@
indicator_node = gtk_css_gadget_get_node (button->indicator_gadget);
gtk_css_node_set_name (indicator_node, indicator_name);
gtk_css_node_set_visible (indicator_node, indicator_visible);
@@ -1099,18 +1082,6 @@
@@ -1101,18 +1083,6 @@ gtk_model_button_finalize (GObject *object)
G_OBJECT_CLASS (gtk_model_button_parent_class)->finalize (object);
}

Expand All @@ -1789,23 +1790,23 @@
-
- object = GTK_WIDGET_CLASS (gtk_model_button_parent_class)->get_accessible (widget);
-
- gtk_model_button_update_state (GTK_MODEL_BUTTON (widget));
- gtk_model_button_update_state (GTK_MODEL_BUTTON (widget), GTK_STATE_FLAG_NORMAL);
-
- return object;
-}
-
static void
gtk_model_button_class_init (GtkModelButtonClass *class)
{
@@ -1132,7 +1103,6 @@
@@ -1134,7 +1104,6 @@ gtk_model_button_class_init (GtkModelButtonClass *class)
widget_class->destroy = gtk_model_button_destroy;
widget_class->state_flags_changed = gtk_model_button_state_flags_changed;
widget_class->direction_changed = gtk_model_button_direction_changed;
- widget_class->get_accessible = gtk_model_button_get_accessible;

button_class->clicked = gtk_model_button_clicked;

@@ -1276,7 +1246,6 @@
@@ -1278,7 +1247,6 @@ gtk_model_button_class_init (GtkModelButtonClass *class)
G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (object_class, LAST_PROPERTY, properties);

Expand Down
2 changes: 1 addition & 1 deletion extra/gtk+3/sources
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.41.tar.xz
https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.43.tar.xz
patches/01-no-fribidi.patch
patches/02-no-accessibility.patch
patches/03-no-atk-extra.patch
2 changes: 1 addition & 1 deletion extra/gtk+3/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.24.41 1
3.24.43 1

0 comments on commit a92c868

Please sign in to comment.