[geary/wip/713954-squished-list] Patch from Charles Lehner



commit 5d5e42c5783806dfa509274fbb947e3175d0e5c5
Author: Jim Nelson <jim yorba org>
Date:   Mon Dec 9 18:11:34 2013 -0800

    Patch from Charles Lehner

 .../formatted-conversation-data.vala               |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/src/client/conversation-list/formatted-conversation-data.vala 
b/src/client/conversation-list/formatted-conversation-data.vala
index d50a005..19bc613 100644
--- a/src/client/conversation-list/formatted-conversation-data.vala
+++ b/src/client/conversation-list/formatted-conversation-data.vala
@@ -264,7 +264,10 @@ public class FormattedConversationData : Geary.BaseObject {
         
         x_offset = 0;
         y_offset = 0;
-        width = 0;
+        // set width to 1 (rather than 0) to work around certain themes that cause the
+        // conversation list to be shown as "squished":
+        // https://bugzilla.gnome.org/show_bug.cgi?id=713954
+        width = 1;
         height = cell_height;
     }
     


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