[gnome-shell/wip/clutter-deprecation-fixes: 7/27] st-scroll-bar: Set the handle as a child of the bar, not the trough
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/clutter-deprecation-fixes: 7/27] st-scroll-bar: Set the handle as a child of the bar, not the trough
- Date: Tue, 14 Feb 2012 16:48:31 +0000 (UTC)
commit 37d88249b23094c42d65a79e61c13acb6d4c7fb1
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Mon Feb 13 23:31:21 2012 -0500
st-scroll-bar: Set the handle as a child of the bar, not the trough
The handle was a child of the trough, but it was allocated and painted
like it was a child of the bar. This will wreak havoc when we port over
to the new Clutter API, so let's just make it a child of the bar.
src/st/st-scroll-bar.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/st/st-scroll-bar.c b/src/st/st-scroll-bar.c
index 6fe185d..30e6f62 100644
--- a/src/st/st-scroll-bar.c
+++ b/src/st/st-scroll-bar.c
@@ -1163,7 +1163,7 @@ st_scroll_bar_init (StScrollBar *self)
self->priv->handle = (ClutterActor *) st_button_new ();
clutter_actor_set_name (CLUTTER_ACTOR (self->priv->handle), "hhandle");
clutter_actor_set_parent (CLUTTER_ACTOR (self->priv->handle),
- self->priv->trough);
+ CLUTTER_ACTOR (self));
g_signal_connect (self->priv->handle, "button-press-event",
G_CALLBACK (handle_button_press_event_cb), self);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]