[geary] Revert "Use hairlines for conversation list separators: Bug #741006"



commit 1f073831d5575fb08b6ab7e27477751da799e83f
Author: Jim Nelson <jim yorba org>
Date:   Thu Dec 18 17:30:38 2014 -0800

    Revert "Use hairlines for conversation list separators: Bug #741006"
    
    This reverts commit ced85aaa8e0fcf6bac80b2b1ef7c7baae35425ba.

 .../formatted-conversation-data.vala               |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/client/conversation-list/formatted-conversation-data.vala 
b/src/client/conversation-list/formatted-conversation-data.vala
index be85bcd..65e02ae 100644
--- a/src/client/conversation-list/formatted-conversation-data.vala
+++ b/src/client/conversation-list/formatted-conversation-data.vala
@@ -299,10 +299,10 @@ public class FormattedConversationData : Geary.BaseObject {
         
         // Draw separator line.
         if (ctx != null && cell_area != null) {
-            ctx.set_line_width(0.5);
+            ctx.set_line_width(1.0);
             GtkUtil.set_source_color_from_string(ctx, CountBadge.UNREAD_BG_COLOR);
-            ctx.move_to(cell_area.x - 2, cell_area.y + cell_area.height + 0.5);
-            ctx.line_to(cell_area.x + cell_area.width + 2, cell_area.y + cell_area.height + 0.5);
+            ctx.move_to(cell_area.x - 1, cell_area.y + cell_area.height);
+            ctx.line_to(cell_area.x + cell_area.width + 1, cell_area.y + cell_area.height);
             ctx.stroke();
         }
         


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