Update of /cvsroot/freevo/freevo/src/skins/main
In directory sc8-pr-cvs1:/tmp/cvs-serv17685/src/skins/main

Modified Files:
        main.py 
Log Message:
Fix hex constant (endian independent as per Python >= 2.3 requirement)


Index: main.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/skins/main/main.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** main.py     23 Sep 2003 13:42:01 -0000      1.13
--- main.py     24 Sep 2003 18:13:44 -0000      1.14
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.14  2003/09/24 18:13:44  outlyer
+ # Fix hex constant (endian independent as per Python >= 2.3 requirement)
+ #
  # Revision 1.13  2003/09/23 13:42:01  outlyer
  # Removed more chatter.
***************
*** 290,294 ****
          if self.pos:
              pos = round(float((x1 - x0 - 2)) / (float(100) / self.pos))
!         osd.drawbox(x0, y1-130, x0 + pos, y1-110, color=0xa0000000, fill=TRUE)
          osd.drawbox(x0, y1-130, x1, y1-110, 2)
  
--- 293,297 ----
          if self.pos:
              pos = round(float((x1 - x0 - 2)) / (float(100) / self.pos))
!         osd.drawbox(x0, y1-130, x0 + pos, y1-110, color=0xa0000000L, fill=TRUE)
          osd.drawbox(x0, y1-130, x1, y1-110, 2)
  




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to