0

c_overviewer is now auto-initialized, and some other minor fixes

This commit is contained in:
Aaron Griffith
2012-01-02 00:40:56 -05:00
parent fbb5230849
commit a1dc392526
5 changed files with 11 additions and 6 deletions

View File

@@ -70,7 +70,7 @@ def validateBGColor(color):
r = int(color[1:3], 16)
g = int(color[3:5], 16)
b = int(color[5:7], 16)
return (r,g,b)
return (r,g,b,0)
def validateOptImg(opt):