[geary/wip/conversation-polish: 6/22] Fix incorrect images in ConversationViewer placeholders



commit 11eff593415f3d75169c154f744a889d2dd3eac7
Author: Michael Gratton <mike vee net>
Date:   Thu Jan 24 09:00:36 2019 +1100

    Fix incorrect images in ConversationViewer placeholders

 .../conversation-viewer/conversation-viewer.vala       | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)
---
diff --git a/src/client/conversation-viewer/conversation-viewer.vala 
b/src/client/conversation-viewer/conversation-viewer.vala
index cfa7de06..a6b17326 100644
--- a/src/client/conversation-viewer/conversation-viewer.vala
+++ b/src/client/conversation-viewer/conversation-viewer.vala
@@ -73,7 +73,8 @@ public class ConversationViewer : Gtk.Stack, Geary.BaseInterface {
         base_ref();
         this.config = config;
 
-        Components.PlaceholderPane no_conversations = new Components.PlaceholderPane();
+        Components.PlaceholderPane no_conversations =
+            new Components.PlaceholderPane();
         no_conversations.icon_name = "folder-symbolic";
         // Translators: Title label for placeholder when no
         // conversations have been selected.
@@ -85,8 +86,9 @@ public class ConversationViewer : Gtk.Stack, Geary.BaseInterface {
         );
         this.no_conversations_page.add(no_conversations);
 
-        Components.PlaceholderPane multi_conversations = new Components.PlaceholderPane();
-        no_conversations.icon_name = "folder-symbolic";
+        Components.PlaceholderPane multi_conversations =
+            new Components.PlaceholderPane();
+        multi_conversations.icon_name = "folder-symbolic";
         // Translators: Title label for placeholder when multiple
         // conversations have been selected.
         multi_conversations.title = _("Multiple conversations selected");
@@ -97,8 +99,9 @@ public class ConversationViewer : Gtk.Stack, Geary.BaseInterface {
         );
         this.multiple_conversations_page.add(multi_conversations);
 
-        Components.PlaceholderPane empty_folder = new Components.PlaceholderPane();
-        no_conversations.icon_name = "folder-symbolic";
+        Components.PlaceholderPane empty_folder =
+            new Components.PlaceholderPane();
+        empty_folder.icon_name = "folder-symbolic";
         // Translators: Title label for placeholder when no
         // conversations have exist in a folder.
         empty_folder.title = _("No conversations found");
@@ -109,8 +112,9 @@ public class ConversationViewer : Gtk.Stack, Geary.BaseInterface {
         );
         this.empty_folder_page.add(empty_folder);
 
-        Components.PlaceholderPane empty_search = new Components.PlaceholderPane();
-        no_conversations.icon_name = "folder-symbolic";
+        Components.PlaceholderPane empty_search =
+            new Components.PlaceholderPane();
+        empty_search.icon_name = "folder-symbolic";
         // Translators: Title label for placeholder when no
         // conversations have been found in a search.
         empty_search.title = _("No conversations found");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]