We was no more scaling icons depending on screen resolution, fix it
This commit is contained in:
parent
679f6f7c46
commit
eeaf517049
@ -25,22 +25,26 @@ grid = Grid()
|
|||||||
|
|
||||||
frame_ActivityIcon = {
|
frame_ActivityIcon = {
|
||||||
'color' : IconColor('white'),
|
'color' : IconColor('white'),
|
||||||
'box-width' : grid.dimension(1)
|
'box-width' : grid.dimension(1),
|
||||||
|
'scale' : style.standard_icon_scale
|
||||||
}
|
}
|
||||||
|
|
||||||
frame_OverlayIcon = {
|
frame_OverlayIcon = {
|
||||||
'box-width' : grid.dimension(1),
|
'box-width' : grid.dimension(1),
|
||||||
'box-height' : grid.dimension(1)
|
'box-height' : grid.dimension(1),
|
||||||
|
'scale' : style.standard_icon_scale
|
||||||
}
|
}
|
||||||
|
|
||||||
frame_ZoomIcon = {
|
frame_ZoomIcon = {
|
||||||
'box-width' : grid.dimension(1),
|
'box-width' : grid.dimension(1),
|
||||||
'box-height' : grid.dimension(1)
|
'box-height' : grid.dimension(1),
|
||||||
|
'scale' : style.standard_icon_scale
|
||||||
}
|
}
|
||||||
|
|
||||||
frame_BuddyIcon = {
|
frame_BuddyIcon = {
|
||||||
'box-width' : grid.dimension(1),
|
'box-width' : grid.dimension(1),
|
||||||
'box-height' : grid.dimension(1)
|
'box-height' : grid.dimension(1),
|
||||||
|
'scale' : style.standard_icon_scale
|
||||||
}
|
}
|
||||||
|
|
||||||
home_MyIcon = {
|
home_MyIcon = {
|
||||||
|
@ -24,11 +24,11 @@ _screen_factor = gtk.gdk.screen_width() / 1200.0
|
|||||||
space_unit = 9 * _screen_factor
|
space_unit = 9 * _screen_factor
|
||||||
separator_thickness = 3 * _screen_factor
|
separator_thickness = 3 * _screen_factor
|
||||||
|
|
||||||
standard_icon_scale = 1.0
|
standard_icon_scale = 1.0 * _screen_factor
|
||||||
small_icon_scale = 0.5
|
small_icon_scale = 0.5 * _screen_factor
|
||||||
medium_icon_scale = 1.5
|
medium_icon_scale = 1.5 * _screen_factor
|
||||||
large_icon_scale = 2.0
|
large_icon_scale = 2.0 * _screen_factor
|
||||||
xlarge_icon_scale = 3.0
|
xlarge_icon_scale = 3.0 * _screen_factor
|
||||||
|
|
||||||
def load_stylesheet(module):
|
def load_stylesheet(module):
|
||||||
for objname in dir(module):
|
for objname in dir(module):
|
||||||
|
Loading…
Reference in New Issue
Block a user