[travis] Add protection against unscaled sizes

As pointed out by @poire-z

* [fix, UX] SkimToWidget scaling

* [fix] Button scaling

* [fix, UX] Scale ProgressWidget

* [fix, UX] Scale confirmbox

* [fix, UX] Scale just about everything
This commit is contained in:
Frans de Jonge
2017-09-11 10:32:39 +02:00
parent 8babe57106
commit 9eb073a524
49 changed files with 270 additions and 244 deletions

View File

@@ -84,8 +84,8 @@ function MultiInputDialog:init()
})
self.dialog_frame = FrameContainer:new{
radius = 8,
bordersize = 3,
radius = Screen:scaleBySize(8),
bordersize = Screen:scaleBySize(3),
padding = 0,
margin = 0,
background = Blitbuffer.COLOR_WHITE,