summaryrefslogtreecommitdiff
path: root/apps/plugins/splitedit.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/splitedit.c')
-rw-r--r--apps/plugins/splitedit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/splitedit.c b/apps/plugins/splitedit.c
index 3d422ecb6c..b2c704d2d9 100644
--- a/apps/plugins/splitedit.c
+++ b/apps/plugins/splitedit.c
@@ -225,9 +225,9 @@ static void update_data(void)
225 */ 225 */
226static void update_timebar(struct mp3entry *mp3) 226static void update_timebar(struct mp3entry *mp3)
227{ 227{
228 rb->scrollbar 228 rb->gui_scrollbar_draw
229 ( 229 (
230 0, TIMEBAR_Y, LCD_WIDTH, TIMEBAR_HEIGHT, 230 rb->screens[SCREEN_MAIN],0, TIMEBAR_Y, LCD_WIDTH, TIMEBAR_HEIGHT,
231 mp3->length, range_start, range_end, 231 mp3->length, range_start, range_end,
232 HORIZONTAL 232 HORIZONTAL
233 ); 233 );
@@ -604,7 +604,7 @@ static int copy_file(
604 return -1; 604 return -1;
605 } 605 }
606 606
607 rb->gui_scrollbar_draw(&rb->screens[SCREEN_MAIN],0, prg_y, LCD_WIDTH, 607 rb->gui_scrollbar_draw(rb->screens[SCREEN_MAIN],0, prg_y, LCD_WIDTH,
608 prg_h, bytes, 0, i, HORIZONTAL); 608 prg_h, bytes, 0, i, HORIZONTAL);
609 rb->lcd_update_rect(0, prg_y, LCD_WIDTH, prg_h); 609 rb->lcd_update_rect(0, prg_y, LCD_WIDTH, prg_h);
610 } 610 }