From 07c8b0029e42e47fb45f72ac496cbf6302720ef5 Mon Sep 17 00:00:00 2001 From: hius07 <62179190+hius07@users.noreply.github.com> Date: Sat, 11 Sep 2021 09:27:38 +0300 Subject: [PATCH] Buttontable: pass icon size to the button --- frontend/ui/widget/buttontable.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/ui/widget/buttontable.lua b/frontend/ui/widget/buttontable.lua index bffdcca92..b45e782e6 100644 --- a/frontend/ui/widget/buttontable.lua +++ b/frontend/ui/widget/buttontable.lua @@ -53,6 +53,8 @@ function ButtonTable:init() text = btn_entry.text, text_func = btn_entry.text_func, icon = btn_entry.icon, + icon_width = btn_entry.icon_width, + icon_height = btn_entry.icon_height, enabled = btn_entry.enabled, callback = btn_entry.callback, hold_callback = btn_entry.hold_callback,