Minor quickscreen and pitchscreen fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19924 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e8da447729
commit
dd13730112
2 changed files with 3 additions and 4 deletions
|
@ -68,7 +68,6 @@ static void pitchscreen_fix_viewports(struct viewport *parent,
|
|||
pitch_viewports[i] = *parent;
|
||||
pitch_viewports[i].height = height;
|
||||
}
|
||||
|
||||
pitch_viewports[PITCH_TOP].y += ICON_BORDER;
|
||||
|
||||
pitch_viewports[PITCH_MID].x += ICON_BORDER;
|
||||
|
@ -98,6 +97,7 @@ static void pitchscreen_draw_icons (struct screen *display,
|
|||
display->mono_bitmap(bitmap_icons_7x8[Icon_FastBackward],
|
||||
2,
|
||||
parent->height /2 - 4, 7, 8);
|
||||
display->update_viewport();
|
||||
}
|
||||
|
||||
static void pitchscreen_draw (struct screen *display, int max_lines,
|
||||
|
@ -153,7 +153,7 @@ static void pitchscreen_draw (struct screen *display, int max_lines,
|
|||
snprintf((char *)buf, sizeof(buf), "%d.%d%%",
|
||||
pitch / 10, pitch % 10 );
|
||||
display->getstringsize(buf,&width_val,&h);
|
||||
display->putsxy((pitch_viewports[PITCH_MID].width / 2) - (w / 2),
|
||||
display->putsxy((pitch_viewports[PITCH_MID].width / 2) - (width_val / 2),
|
||||
(show_lang_pitch? h : h/2), buf);
|
||||
|
||||
/* What's wider? LANG_PITCH or the value?
|
||||
|
@ -272,7 +272,6 @@ int gui_syncpitchscreen_run(void)
|
|||
|
||||
/* also, draw the icons now, it's only needed once */
|
||||
pitchscreen_draw_icons(&screens[i], &parent[i]);
|
||||
screens[i].update();
|
||||
}
|
||||
#if CONFIG_CODEC == SWCODEC
|
||||
pcmbuf_set_low_latency(true);
|
||||
|
|
|
@ -70,7 +70,7 @@ static void quickscreen_fix_viewports(struct gui_quickscreen *qs,
|
|||
/* center the icons VP first */
|
||||
vp_icons[screen] = *parent;
|
||||
vp_icons[screen].width = CENTER_ICONAREA_WIDTH; /* abosulte smallest allowed */
|
||||
vp_icons[screen].x = (parent->width-parent->x-CENTER_ICONAREA_WIDTH)/2;
|
||||
vp_icons[screen].x = parent->x + (parent->width / 2 - CENTER_ICONAREA_WIDTH / 2);
|
||||
|
||||
vps[screen][QUICKSCREEN_BOTTOM] = *parent;
|
||||
if (nb_lines <= MIN_LINES) /* make the bottom item use 1 line */
|
||||
|
|
Loading…
Reference in a new issue