mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Fix signature for recursive find_icon_path_helper
Ref:81072c0420 (commitcomment-13705007)
. This reverts a part of81072c0
. Closes https://github.com/awesomeWM/awesome/pull/518.
This commit is contained in:
parent
37aad883a6
commit
1bd7aa103b
1 changed files with 2 additions and 1 deletions
|
@ -185,7 +185,8 @@ local lookup_icon = function(self, icon_name, icon_size)
|
|||
return nil
|
||||
end
|
||||
|
||||
local find_icon_path_helper = function(self, icon_name, icon_size)
|
||||
local find_icon_path_helper -- Gets called recursively.
|
||||
find_icon_path_helper = function(self, icon_name, icon_size)
|
||||
local filename = lookup_icon(self, icon_name, icon_size)
|
||||
if filename then
|
||||
return filename
|
||||
|
|
Loading…
Reference in a new issue