We was no more scaling icons depending on screen resolution, fix it

This commit is contained in:
Marco Pesenti Gritti
2007-01-27 02:45:09 +01:00
parent 679f6f7c46
commit eeaf517049
2 changed files with 13 additions and 9 deletions
+8 -4
View File
@@ -25,22 +25,26 @@ grid = Grid()
frame_ActivityIcon = {
'color' : IconColor('white'),
'box-width' : grid.dimension(1)
'box-width' : grid.dimension(1),
'scale' : style.standard_icon_scale
}
frame_OverlayIcon = {
'box-width' : grid.dimension(1),
'box-height' : grid.dimension(1)
'box-height' : grid.dimension(1),
'scale' : style.standard_icon_scale
}
frame_ZoomIcon = {
'box-width' : grid.dimension(1),
'box-height' : grid.dimension(1)
'box-height' : grid.dimension(1),
'scale' : style.standard_icon_scale
}
frame_BuddyIcon = {
'box-width' : grid.dimension(1),
'box-height' : grid.dimension(1)
'box-height' : grid.dimension(1),
'scale' : style.standard_icon_scale
}
home_MyIcon = {