From f9e456bb4740ee5fb303695d18a4d04766bd11cf Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 14 Feb 2012 14:22:50 -0500 Subject: [PATCH] st-scroll-view: Remove unnecessary VISIBLE checks clutter_actor_paint already checks for VISIBLE before painting https://bugzilla.gnome.org/show_bug.cgi?id=670034 --- src/st/st-scroll-view.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/st/st-scroll-view.c b/src/st/st-scroll-view.c index e5de8c8c1..0b304a041 100644 --- a/src/st/st-scroll-view.c +++ b/src/st/st-scroll-view.c @@ -270,9 +270,9 @@ st_scroll_view_paint (ClutterActor *actor) CLUTTER_ACTOR_CLASS (st_scroll_view_parent_class)->paint (actor); /* paint our custom children */ - if (priv->hscrollbar_visible && CLUTTER_ACTOR_IS_VISIBLE (priv->hscroll)) + if (priv->hscrollbar_visible) clutter_actor_paint (priv->hscroll); - if (priv->vscrollbar_visible && CLUTTER_ACTOR_IS_VISIBLE (priv->vscroll)) + if (priv->vscrollbar_visible) clutter_actor_paint (priv->vscroll); } @@ -286,9 +286,9 @@ st_scroll_view_pick (ClutterActor *actor, CLUTTER_ACTOR_CLASS (st_scroll_view_parent_class)->pick (actor, color); /* paint our custom children */ - if (priv->hscrollbar_visible && CLUTTER_ACTOR_IS_VISIBLE (priv->hscroll)) + if (priv->hscrollbar_visible) clutter_actor_paint (priv->hscroll); - if (priv->vscrollbar_visible && CLUTTER_ACTOR_IS_VISIBLE (priv->vscroll)) + if (priv->vscrollbar_visible) clutter_actor_paint (priv->vscroll); }