diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 11:10:19 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 11:10:19 +0000 |
commit | 5fd97fa2e971562f24d6e0b61148eb3c35753c74 (patch) | |
tree | ec2fbcdc4585a5f6a7335876901d79b842cdd298 /apps/wps-display.c | |
parent | 5f6047075f682e92fe9c3faf67c6d58046ef83ae (diff) |
Removed the option for the progress bar, making it permanently solid
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4852 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps-display.c')
-rw-r--r-- | apps/wps-display.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c index 701d2e2d21..68b018b43e 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -916,12 +916,8 @@ bool wps_refresh(struct mp3entry* id3, int percent= id3->length? (id3->elapsed + ff_rewind_count) * 100 / id3->length:0; - if(global_settings.progressbar_solid) - scrollbar(0, i*h + offset + 1, LCD_WIDTH, 6, 100, 0, - percent, HORIZONTAL); - else - slidebar(0, i*h + offset + 1, LCD_WIDTH, 6, - percent, Grow_Right); + scrollbar(0, i*h + offset + 1, LCD_WIDTH, 6, 100, 0, + percent, HORIZONTAL); update_line = true; } if (flags & refresh_mode & WPS_REFRESH_PEAK_METER) { |