ImageButtonDecoration: new image for menu button

This commit is contained in:
Jan Vornberger 2010-04-02 17:49:10 +00:00
parent e125c84616
commit c37cbbadf5

View File

@ -81,16 +81,16 @@ convertToBool :: [[Int]] -> [[Bool]]
convertToBool = map convertToBool'
menuButton' :: [[Int]]
menuButton' = [[0,0,0,0,1,1,0,0,0,0],
[0,0,0,1,1,1,1,0,0,0],
[0,0,1,1,0,0,1,1,0,0],
[0,1,1,0,0,0,0,1,1,0],
[1,1,0,0,1,1,0,0,1,1],
[1,1,0,0,1,1,0,0,1,1],
[0,1,1,0,0,0,0,1,1,0],
[0,0,1,1,0,0,1,1,0,0],
[0,0,0,1,1,1,1,0,0,0],
[0,0,0,0,1,1,0,0,0,0]]
menuButton' = [[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,0,0,0,0,0,0,1,1],
[1,1,0,0,0,0,0,0,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1]]
menuButton :: [[Bool]]
menuButton = convertToBool menuButton'