mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-26 19:25:02 +00:00
Fix vertical placement of bmp images on firmware screens.
BUG=chromium-os:33608 TEST=Run 'make' in newbitmaps directory to generate new bmpblock. Run on DUT. Observe spacing in the footer section is closer together. Change-Id: I96987e827fd395f13244dbc58db600de5dc30958 Reviewed-on: https://gerrit.chromium.org/gerrit/30610 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Commit-Ready: Dave Parker <dparker@chromium.org> Tested-by: Dave Parker <dparker@chromium.org>
This commit is contained in:
@@ -155,33 +155,27 @@ add_centered_below() {
|
||||
local width
|
||||
local height
|
||||
local x
|
||||
local y
|
||||
|
||||
height=$(get_max_height $images)
|
||||
y=$(expr $cur_y + $height)
|
||||
|
||||
width=$(total_width $images)
|
||||
x=$(expr $cur_x - $width / 2)
|
||||
|
||||
add_images $x $y $images
|
||||
add_images $x $cur_y $images
|
||||
}
|
||||
|
||||
# This adds a list of images and updates the insert location
|
||||
# below the new images with a padding of $xpad.
|
||||
# below the new images with a padding of $ypad.
|
||||
insert_centered_below() {
|
||||
local images=$@
|
||||
local width
|
||||
local height
|
||||
local x
|
||||
local y
|
||||
|
||||
height=$(get_max_height $images)
|
||||
y=$(expr $cur_y + $height)
|
||||
|
||||
width=$(total_width $images)
|
||||
x=$(expr $cur_x - $width / 2)
|
||||
|
||||
add_images $x $y $images
|
||||
add_images $x $cur_y $images
|
||||
|
||||
height=$(get_max_height $images)
|
||||
move_pos_down $(expr $height + $ypad)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user