From: Philipp Zabel Date: Wed, 4 Aug 2010 22:24:37 +0000 (+0200) Subject: Use general_no_thumbnail instead of imageviewer_no_pic if the movie has no poster X-Git-Url: http://git.maemo.org/git/?p=cinaest;a=commitdiff_plain;h=6077e7aa04d0f72d9cf454eddd1c231cec776d9e Use general_no_thumbnail instead of imageviewer_no_pic if the movie has no poster imageviewer_no_pic (the broken image) can be produced by the poster factory if (down)loading the poster failed. --- diff --git a/src/movie-window.vala b/src/movie-window.vala index fefa968..bb92083 100644 --- a/src/movie-window.vala +++ b/src/movie-window.vala @@ -52,9 +52,9 @@ public class MovieWindow : StackableWindow { } else { // FIXME if (no_poster == null) try { - no_poster = new Gdk.Pixbuf.from_file ("/usr/share/icons/hicolor/64x64/hildon/imageviewer_no_pic.png"); + no_poster = new Gdk.Pixbuf.from_file ("/usr/share/icons/hicolor/64x64/hildon/general_no_thumbnail.png"); } catch (Error e) { - critical ("Missing imageviewer_no_pic icon: %s\n", e.message); + critical ("Missing general_no_thumbnail icon: %s\n", e.message); } image.pixbuf = no_poster; }