mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
menubar/icon_theme.lua: Handle scalable icons correctly
This bug was caused by typos. Closes https://github.com/awesomeWM/awesome/pull/525.
This commit is contained in:
parent
1bd7aa103b
commit
fbfa6b8995
1 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ local directory_matches_size = function(self, subdirectory, icon_size)
|
||||||
|
|
||||||
if kind == "Fixed" then
|
if kind == "Fixed" then
|
||||||
return icon_size == size
|
return icon_size == size
|
||||||
elseif kind == "Scaled" then
|
elseif kind == "Scalable" then
|
||||||
return icon_size >= min_size and icon_size <= max_size
|
return icon_size >= min_size and icon_size <= max_size
|
||||||
elseif kind == "Threshold" then
|
elseif kind == "Threshold" then
|
||||||
return icon_size >= size - threshold and icon_size <= size + threshold
|
return icon_size >= size - threshold and icon_size <= size + threshold
|
||||||
|
@ -127,7 +127,7 @@ local directory_size_distance = function(self, subdirectory, icon_size)
|
||||||
|
|
||||||
if kind == "Fixed" then
|
if kind == "Fixed" then
|
||||||
return math.abs(icon_size - size)
|
return math.abs(icon_size - size)
|
||||||
elseif kind == "Scaled" then
|
elseif kind == "Scalable" then
|
||||||
if icon_size < min_size then
|
if icon_size < min_size then
|
||||||
return min_size - icon_size
|
return min_size - icon_size
|
||||||
elseif icon_size > max_size then
|
elseif icon_size > max_size then
|
||||||
|
|
Loading…
Reference in a new issue