diff options
author | Srinivasa Ragavan <sragavan@gnome.org> | 2010-08-12 14:24:31 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@gnome.org> | 2010-08-12 14:24:31 +0800 |
commit | 59257d0bbc4291fe1a864252207567f70ee14050 (patch) | |
tree | 96d64f5ca67b2153a39d451cb9a6ddbd21809c18 /mail/message-list.c | |
parent | a6c40f7e8f52c44446d8e9b6ba8cbd6a7cfc3911 (diff) | |
download | gsoc2013-evolution-59257d0bbc4291fe1a864252207567f70ee14050.tar.gz gsoc2013-evolution-59257d0bbc4291fe1a864252207567f70ee14050.tar.zst gsoc2013-evolution-59257d0bbc4291fe1a864252207567f70ee14050.zip |
Pause timline instead of stop. It hides the search animation texture.
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 8296ea8143..d218c9ed3a 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -4644,7 +4644,8 @@ regen_list_done (struct _regen_list_msg *m) #if HAVE_CLUTTER if (m->ml->priv->timeline && clutter_timeline_is_playing(m->ml->priv->timeline)) { - clutter_timeline_stop (m->ml->priv->timeline); + clutter_timeline_pause (m->ml->priv->timeline); + clutter_actor_hide (m->ml->priv->search_texture); } else { ClutterActor *pane = g_object_get_data ((GObject *)m->ml, "actor"); |