Return-Path: Mailing-List: contact gump-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list gump@jakarta.apache.org Received: (qmail 98535 invoked by uid 500); 7 May 2003 15:53:12 -0000 Received: (qmail 98532 invoked from network); 7 May 2003 15:53:12 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 7 May 2003 15:53:12 -0000 Received: (qmail 31609 invoked by uid 1464); 7 May 2003 15:53:12 -0000 Date: 7 May 2003 15:53:12 -0000 Message-ID: <20030507155312.31608.qmail@icarus.apache.org> From: nicolaken@apache.org To: jakarta-gump-cvs@apache.org Subject: cvs commit: jakarta-gump/python/gump view.py X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N nicolaken 2003/05/07 08:53:12 Modified: python/gump view.py Log: Fixed this bug told by Sam Ruby: > Open the > console window and then select the scarab project: no additional lines > are added to the console, but the first non-red line turns red. Revision Changes Path 1.36 +4 -4 jakarta-gump/python/gump/view.py Index: view.py =================================================================== RCS file: /home/cvs/jakarta-gump/python/gump/view.py,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- view.py 7 May 2003 08:34:58 -0000 1.35 +++ view.py 7 May 2003 15:53:11 -0000 1.36 @@ -492,7 +492,7 @@ def add(self, message, record): self.log.insert(0,record) - self.logmsg.append(message) + self.logmsg.insert(0,message) self.SetItemCount(len(self.log)) def OnItemActivated(self, event):