From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.204.155.88 with SMTP id r24cs319839bkw; Thu, 5 Aug 2010 09:28:10 -0700 (PDT) Received: by 10.229.227.210 with SMTP id jb18mr258447qcb.93.1281025689246; Thu, 05 Aug 2010 09:28:09 -0700 (PDT) Return-Path: Received: from rubyforge.org (rubyforge.org [205.234.109.19]) by mx.google.com with ESMTP id g7si815672qcm.13.2010.08.05.09.28.08; Thu, 05 Aug 2010 09:28:09 -0700 (PDT) Received-SPF: pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19; Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=sup-talk-bounces@rubyforge.org Received: from rubyforge.org (rubyforge.org [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id A858B185839B; Thu, 5 Aug 2010 12:28:08 -0400 (EDT) Received: from sam.mediasupervision.de (sam.mediasupervision.de [80.152.3.104]) by rubyforge.org (Postfix) with ESMTP id C713B1858379 for ; Thu, 5 Aug 2010 12:27:57 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sam.mediasupervision.de (Postfix) with ESMTP id 4A54E485C3F for ; Thu, 5 Aug 2010 18:27:57 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at sam.mediasupervision.de Received: from sam.mediasupervision.de ([127.0.0.1]) by localhost (sam.mediasupervision.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UtQiCj0uITQ5 for ; Thu, 5 Aug 2010 18:27:57 +0200 (CEST) Received: by sam.mediasupervision.de (Postfix, from userid 1000) id 272CD485DE2; Thu, 5 Aug 2010 18:27:57 +0200 (CEST) From: Gregor Hoffleit To: sup-talk In-reply-to: <1281021633-sup-7274@localhost> References: <1279811550-sup-7833@hero> <1280195847-sup-7116@hero> <1281021633-sup-7274@localhost> <1264760080.41.0.139357784083.issue58@masanjin.net> Date: Thu, 05 Aug 2010 18:27:57 +0200 Message-Id: <1281025435-sup-9074@sam.mediasupervision.de> User-Agent: Sup/git Subject: Re: [sup-talk] color customization X-BeenThere: sup-talk@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: User & developer discussion of Sup List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: sup-talk-bounces@rubyforge.org Errors-To: sup-talk-bounces@rubyforge.org * arstoien [Do Aug 05 17:21:58 +0200 2010] > * the space between the date and the sender name in the index view > (where the star is when a message is starred) is still highlighted in > green, but only when the message is _not_ starred. When the message is > starred it is highlighted correctly. Search the sup-devel archive for issue58 (msg-id 1264760080.41.0.139357784083.issue58@masanjin.net, from January). This was my fix for that problem. Nobody else seemed to care about that problem, so it's only included in my private Git branch. Regards, Gregor commit 6551fc3e5373cc9f3a32b28b4335a2de2cd2efa4 Author: Gregor Hoffleit Date: Thu May 27 11:40:13 2010 +0200 Bugfix: Background for starred messages diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb index 5f3499c..f012123 100644 --- a/lib/sup/modes/thread-index-mode.rb +++ b/lib/sup/modes/thread-index-mode.rb @@ -887,7 +887,7 @@ protected [ [:tagged_color, @tags.tagged?(t) ? ">" : " "], [:date_color, date_widget_text], - (starred ? [:starred_color, "*"] : [:none, " "]), + [:starred_color, (starred ? "*" : " ")], ] + from + [ _______________________________________________ sup-talk mailing list sup-talk@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-talk