summaryrefslogtreecommitdiff
path: root/src/totem-main-toolbar.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2014-02-02 19:11:50 +0100
committerBastien Nocera <hadess@hadess.net>2014-02-02 19:14:08 +0100
commit34744230391ba438559dcc45720645b30fae44aa (patch)
tree5fc0d3f4ea209b231f5a583a6254c1b3ff960336 /src/totem-main-toolbar.c
parenta20bcfbf17e2b8deadd0344dbd37ae30838e3243 (diff)
downloadtotem-34744230391ba438559dcc45720645b30fae44aa.tar.gz
main: Fix empty title when coming back from player
We were setting the title correctly, but then overwriting the title label with the subtitle value.
Diffstat (limited to 'src/totem-main-toolbar.c')
-rw-r--r--src/totem-main-toolbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/totem-main-toolbar.c b/src/totem-main-toolbar.c
index f5e41b0a5..a45ec2235 100644
--- a/src/totem-main-toolbar.c
+++ b/src/totem-main-toolbar.c
@@ -648,7 +648,7 @@ totem_main_toolbar_set_subtitle (TotemMainToolbar *bar,
bar->priv->subtitle = g_strdup (subtitle);
g_free (tmp);
- gtk_label_set_text (GTK_LABEL (bar->priv->title_label), subtitle);
+ gtk_label_set_text (GTK_LABEL (bar->priv->subtitle_label), subtitle);
g_object_notify (G_OBJECT (bar), "subtitle");
}