[totem/gnome-3-10] main: Fix possible assertion on startup
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem/gnome-3-10] main: Fix possible assertion on startup
- Date: Fri, 27 Sep 2013 13:53:29 +0000 (UTC)
commit b252133d765245a297e446c805822601e5a4924b
Author: Bastien Nocera <hadess hadess net>
Date: Fri Sep 27 15:50:20 2013 +0200
main: Fix possible assertion on startup
In some cases, Totem was focused on startup by the time we
handled command-line arguments. This triggered an assertion
when trying to show the fullscreen popups because we weren't
fullscreened yet.
https://bugzilla.gnome.org/show_bug.cgi?id=708647
src/totem-fullscreen.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/totem-fullscreen.c b/src/totem-fullscreen.c
index fac1b05..69e1fd7 100644
--- a/src/totem-fullscreen.c
+++ b/src/totem-fullscreen.c
@@ -307,7 +307,8 @@ totem_fullscreen_show_popups (TotemFullscreen *fs, gboolean show_cursor)
{
GtkWidget *item;
- g_assert (fs->priv->is_fullscreen != FALSE);
+ if (!fs->priv->is_fullscreen)
+ return;
if (fs->priv->popup_in_progress != FALSE)
return;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]