Update to 3.46.1
This commit is contained in:
parent
e71d9f2208
commit
067799c686
@ -1,174 +0,0 @@
|
|||||||
diff --git a/src/e-util/e-headerbar-button.c b/src/e-util/e-headerbar-button.c
|
|
||||||
index 70dad04173..248a278ea4 100644
|
|
||||||
--- a/src/e-util/e-headerbar-button.c
|
|
||||||
+++ b/src/e-util/e-headerbar-button.c
|
|
||||||
@@ -136,8 +136,10 @@ header_bar_button_update_button (EHeaderBarButton *header_bar_button)
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
-header_bar_button_clicked (EHeaderBarButton *header_bar_button)
|
|
||||||
+header_bar_button_clicked (GtkWidget *button,
|
|
||||||
+ gpointer user_data)
|
|
||||||
{
|
|
||||||
+ EHeaderBarButton *header_bar_button = user_data;
|
|
||||||
GtkAction *action;
|
|
||||||
|
|
||||||
if (header_bar_button->priv->action == NULL)
|
|
||||||
@@ -149,6 +151,15 @@ header_bar_button_clicked (EHeaderBarButton *header_bar_button)
|
|
||||||
gtk_action_activate (action);
|
|
||||||
}
|
|
||||||
|
|
||||||
+static void
|
|
||||||
+header_bar_button_action_activate_cb (GObject *button,
|
|
||||||
+ gpointer user_data)
|
|
||||||
+{
|
|
||||||
+ GtkAction *action = user_data;
|
|
||||||
+
|
|
||||||
+ gtk_action_activate (action);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static void
|
|
||||||
header_bar_button_set_prefer_item (EHeaderBarButton *self,
|
|
||||||
const gchar *prefer_item)
|
|
||||||
@@ -178,12 +189,63 @@ header_bar_button_transform_sensitive_cb (GBinding *binding,
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
+typedef struct _ToggleActionData {
|
|
||||||
+ GWeakRef *button_weakref;
|
|
||||||
+ gulong handler_id;
|
|
||||||
+} ToggleActionData;
|
|
||||||
+
|
|
||||||
+static void
|
|
||||||
+toggle_action_data_free (gpointer ptr,
|
|
||||||
+ GClosure *closure)
|
|
||||||
+{
|
|
||||||
+ ToggleActionData *tad = ptr;
|
|
||||||
+
|
|
||||||
+ if (tad) {
|
|
||||||
+ e_weak_ref_free (tad->button_weakref);
|
|
||||||
+ g_free (tad);
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static void
|
|
||||||
+header_button_action_notify_active_cb (GObject *action,
|
|
||||||
+ GParamSpec *param,
|
|
||||||
+ gpointer user_data)
|
|
||||||
+{
|
|
||||||
+ ToggleActionData *tad = user_data;
|
|
||||||
+ GtkToggleButton *button;
|
|
||||||
+ gboolean active = FALSE;
|
|
||||||
+
|
|
||||||
+ button = g_weak_ref_get (tad->button_weakref);
|
|
||||||
+ if (!button)
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
+ g_object_get (action, "active", &active, NULL);
|
|
||||||
+
|
|
||||||
+ /* The "clicked" callback calls gtk_action_activate(), which, in case
|
|
||||||
+ of the toggle action, means to flip the option, thus it calls a notification
|
|
||||||
+ about action's 'active' property change, which leads back here, causing
|
|
||||||
+ a busy loop though the signal handlers. Blocking the handler breaks the loop. */
|
|
||||||
+ if (tad->handler_id)
|
|
||||||
+ g_signal_handler_block (button, tad->handler_id);
|
|
||||||
+
|
|
||||||
+ if ((gtk_toggle_button_get_active (button) ? 1 : 0) != (active ? 1 : 0))
|
|
||||||
+ gtk_toggle_button_set_active (button, active);
|
|
||||||
+
|
|
||||||
+ if (tad->handler_id)
|
|
||||||
+ g_signal_handler_unblock (button, tad->handler_id);
|
|
||||||
+
|
|
||||||
+ g_clear_object (&button);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static GtkWidget *
|
|
||||||
header_bar_button_add_action (EHeaderBarButton *header_bar_button,
|
|
||||||
const gchar *label,
|
|
||||||
- GtkAction *action)
|
|
||||||
+ GtkAction *action,
|
|
||||||
+ GCallback clicked_cb,
|
|
||||||
+ gpointer clicked_cb_user_data)
|
|
||||||
{
|
|
||||||
GtkWidget *button;
|
|
||||||
+ gulong clicked_handler = 0;
|
|
||||||
|
|
||||||
if (GTK_IS_TOGGLE_ACTION (action))
|
|
||||||
button = gtk_toggle_button_new_with_label (label);
|
|
||||||
@@ -194,6 +256,11 @@ header_bar_button_add_action (EHeaderBarButton *header_bar_button,
|
|
||||||
|
|
||||||
gtk_box_pack_start (GTK_BOX (header_bar_button), button, FALSE, FALSE, 0);
|
|
||||||
|
|
||||||
+ if (clicked_cb) {
|
|
||||||
+ clicked_handler = g_signal_connect_object (
|
|
||||||
+ button, "clicked", clicked_cb, clicked_cb_user_data, 0);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
if (action) {
|
|
||||||
e_binding_bind_property_full (
|
|
||||||
action, "sensitive",
|
|
||||||
@@ -203,10 +270,17 @@ header_bar_button_add_action (EHeaderBarButton *header_bar_button,
|
|
||||||
NULL, NULL, NULL);
|
|
||||||
|
|
||||||
if (GTK_IS_TOGGLE_ACTION (action)) {
|
|
||||||
- e_binding_bind_property (
|
|
||||||
- action, "active",
|
|
||||||
- button, "active",
|
|
||||||
- G_BINDING_SYNC_CREATE);
|
|
||||||
+ ToggleActionData *tad;
|
|
||||||
+
|
|
||||||
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
|
||||||
+ gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
|
|
||||||
+
|
|
||||||
+ tad = g_new0 (ToggleActionData, 1);
|
|
||||||
+ tad->button_weakref = e_weak_ref_new (button);
|
|
||||||
+ tad->handler_id = clicked_handler;
|
|
||||||
+
|
|
||||||
+ g_signal_connect_data (action, "notify::active",
|
|
||||||
+ G_CALLBACK (header_button_action_notify_active_cb), tad, toggle_action_data_free, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
header_bar_button_update_button_for_action (GTK_BUTTON (button), action);
|
|
||||||
@@ -278,16 +352,14 @@ header_bar_button_constructed (GObject *object)
|
|
||||||
|
|
||||||
header_bar_button->priv->button = header_bar_button_add_action (header_bar_button,
|
|
||||||
header_bar_button->priv->label,
|
|
||||||
- header_bar_button->priv->action);
|
|
||||||
+ header_bar_button->priv->action,
|
|
||||||
+ G_CALLBACK (header_bar_button_clicked),
|
|
||||||
+ header_bar_button);
|
|
||||||
|
|
||||||
/* TODO: GTK4 port: do not use linked buttons
|
|
||||||
* https://developer.gnome.org/hig/patterns/containers/header-bars.html#button-grouping */
|
|
||||||
style_context = gtk_widget_get_style_context (GTK_WIDGET (header_bar_button));
|
|
||||||
gtk_style_context_add_class (style_context, "linked");
|
|
||||||
-
|
|
||||||
- g_signal_connect_swapped (
|
|
||||||
- header_bar_button->priv->button, "clicked",
|
|
||||||
- G_CALLBACK (header_bar_button_clicked), header_bar_button);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
@@ -393,17 +465,11 @@ e_header_bar_button_add_action (EHeaderBarButton *header_bar_button,
|
|
||||||
const gchar *label,
|
|
||||||
GtkAction *action)
|
|
||||||
{
|
|
||||||
- GtkWidget *button;
|
|
||||||
-
|
|
||||||
g_return_if_fail (E_IS_HEADER_BAR_BUTTON (header_bar_button));
|
|
||||||
g_return_if_fail (GTK_IS_ACTION (action));
|
|
||||||
|
|
||||||
- button = header_bar_button_add_action (header_bar_button, label, action);
|
|
||||||
-
|
|
||||||
- g_signal_connect_object (
|
|
||||||
- button, "clicked",
|
|
||||||
- G_CALLBACK (gtk_action_activate), action,
|
|
||||||
- G_CONNECT_SWAPPED);
|
|
||||||
+ header_bar_button_add_action (header_bar_button, label, action,
|
|
||||||
+ G_CALLBACK (header_bar_button_action_activate_cb), action);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
--
|
|
||||||
2.37.3
|
|
||||||
|
|
@ -43,8 +43,8 @@
|
|||||||
### Abstract ###
|
### Abstract ###
|
||||||
|
|
||||||
Name: evolution
|
Name: evolution
|
||||||
Version: 3.46.0
|
Version: 3.46.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Mail and calendar client for GNOME
|
Summary: Mail and calendar client for GNOME
|
||||||
License: GPLv2+ and GFDL
|
License: GPLv2+ and GFDL
|
||||||
URL: https://wiki.gnome.org/Apps/Evolution
|
URL: https://wiki.gnome.org/Apps/Evolution
|
||||||
@ -52,8 +52,6 @@ Source: http://download.gnome.org/sources/%{name}/3.46/%{name}-%{version}.tar.xz
|
|||||||
Source1: flatpak-evolution-fix-service-names.sh
|
Source1: flatpak-evolution-fix-service-names.sh
|
||||||
Source2: flatpak-evolution-wrapper.sh.in
|
Source2: flatpak-evolution-wrapper.sh.in
|
||||||
|
|
||||||
Patch01: 0001-I-2037-EHeaderBarButton-Avoid-busy-loop-on-toggle-ac.patch
|
|
||||||
|
|
||||||
# Approximate version number
|
# Approximate version number
|
||||||
Provides: bundled(libgnomecanvas) = 2.30.0
|
Provides: bundled(libgnomecanvas) = 2.30.0
|
||||||
|
|
||||||
@ -573,6 +571,9 @@ grep -v "%{_datadir}/locale" evolution.lang > help.lang
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Oct 21 2022 Milan Crha <mcrha@redhat.com> - 3.46.1-1
|
||||||
|
- Update to 3.46.1
|
||||||
|
|
||||||
* Fri Sep 23 2022 Milan Crha <mcrha@redhat.com> - 3.46.0-2
|
* Fri Sep 23 2022 Milan Crha <mcrha@redhat.com> - 3.46.0-2
|
||||||
- Resolves: #2129068 (Busy loop when opening composer window)
|
- Resolves: #2129068 (Busy loop when opening composer window)
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (evolution-3.46.0.tar.xz) = 58b532711196e7c79cffa2357245743562a94fd9629718066ba16a26889fb45f94992e4cc3cf0d3911356b700abecb05099c5c854749db282a241321c0d0c605
|
SHA512 (evolution-3.46.1.tar.xz) = 20b6a5663ec6ab43af6ec7c15a64b1d1070f8488aaebd3fbaca4b4cc8b70bf4b8087b047e5b75e37273818b8d1d6bde5139c708284626e9d3c15b83dc09f5d3b
|
||||||
|
Loading…
Reference in New Issue
Block a user