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:
Dave Parker
2012-08-16 16:40:26 -07:00
committed by Gerrit
parent 5eb7cdba0e
commit 0868f8f3b7

View File

@@ -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)
}