From f72514f99daba908b4966230af5d567c3385dce7 Mon Sep 17 00:00:00 2001 From: Bastien Dejean Date: Mon, 20 Feb 2017 14:53:34 +0100 Subject: [PATCH] Use a simple gray line to separate menu items --- frontend/ui/widget/touchmenu.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/ui/widget/touchmenu.lua b/frontend/ui/widget/touchmenu.lua index 69945422a..46fc29557 100644 --- a/frontend/ui/widget/touchmenu.lua +++ b/frontend/ui/widget/touchmenu.lua @@ -398,10 +398,10 @@ function TouchMenu:init() -- pad with 10 pixel to align with the up arrow in footer HorizontalSpan:new{width = 10}, LineWidget:new{ - style = "dashed", + background = Blitbuffer.gray(0.33), dimen = Geom:new{ w = self.item_width - 20, - h = 1, + h = Screen:scaleByDPI(1), } } }