[gdl] bgo#577469: Fix mistakes introduced in 6e1bc49d
- From: Johannes Schmid <jhs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gdl] bgo#577469: Fix mistakes introduced in 6e1bc49d
- Date: Sun, 27 Jun 2010 07:52:55 +0000 (UTC)
commit 871caa26dad9c58a14c6e89bc3687db827ed6302
Author: Mirsal Ennaime <mirsal ennaime gmail com>
Date: Thu Jun 24 12:51:44 2010 +0200
bgo#577469: Fix mistakes introduced in 6e1bc49d
* Synthesize the grip's iconify button leave notify event using
its event_window rather than its parent window.
* Use the more correct gtk_widget_event() function instead of
g_signal_emit_by_name()
gdl/gdl-dock-item-grip.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/gdl/gdl-dock-item-grip.c b/gdl/gdl-dock-item-grip.c
index 02c2471..c4cd573 100644
--- a/gdl/gdl-dock-item-grip.c
+++ b/gdl/gdl-dock-item-grip.c
@@ -257,6 +257,10 @@ gdl_dock_item_grip_close_clicked (GtkWidget *widget,
gdl_dock_item_hide_item (grip->item);
}
+#if !GTK_CHECK_VERSION (2, 22, 0)
+# define gtk_button_get_event_window(button) button->event_window
+#endif // Gtk+ >= 2.22
+
static void
gdl_dock_item_grip_fix_iconify_button (GdlDockItemGrip *grip)
{
@@ -266,11 +270,10 @@ gdl_dock_item_grip_fix_iconify_button (GdlDockItemGrip *grip)
GdkModifierType modifiers;
gint x = 0, y = 0;
- gboolean ev_ret;
g_return_if_fail (gtk_widget_get_realized (iconify_button));
- window = gtk_widget_get_parent_window (iconify_button);
+ window = gtk_button_get_event_window (GTK_BUTTON (iconify_button));
event = gdk_event_new (GDK_LEAVE_NOTIFY);
g_assert (GDK_IS_WINDOW (window));
@@ -288,9 +291,7 @@ gdl_dock_item_grip_fix_iconify_button (GdlDockItemGrip *grip)
event->crossing.focus = FALSE;
event->crossing.state = modifiers;
- //GTK_BUTTON (iconify_button)->in_button = FALSE;
- g_signal_emit_by_name (iconify_button, "leave-notify-event",
- event, &ev_ret, 0);
+ gtk_widget_event (iconify_button, event);
gdk_event_free (event);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]