aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-03-15 19:18:19 +0000
committerbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-03-15 19:18:19 +0000
commit91d892149bdc487725e96a63aad8c37fc1f5798a (patch)
treec2e450a3ad9aaaeb1c59b6cf81aa1069caf0efff
parent578b9415aa600bdd5323784570edc0a96c605eb5 (diff)
downloadusdx-91d892149bdc487725e96a63aad8c37fc1f5798a.tar.gz
usdx-91d892149bdc487725e96a63aad8c37fc1f5798a.tar.xz
usdx-91d892149bdc487725e96a63aad8c37fc1f5798a.zip
fixed cover loading/showing when using tabs=on #2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2200 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/screens/UScreenSong.pas7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/screens/UScreenSong.pas b/src/screens/UScreenSong.pas
index fa45697b..65f3c157 100644
--- a/src/screens/UScreenSong.pas
+++ b/src/screens/UScreenSong.pas
@@ -1661,12 +1661,11 @@ begin
if VS > 0 then
begin
- if (not isScrolling) and (VS > 1) then
+ if (not isScrolling) and (VS > 0) then
begin
isScrolling := true;
OnSongDeselect;
- end else if (VS=0) then // fix for tabs=on
- UnLoadDetailedCover;
+ end;
Skip := 1;
@@ -1701,7 +1700,7 @@ begin
if VS > 1 then
begin
- if (not isScrolling) and (VS > 1) then
+ if (not isScrolling) and (VS > 0) then
begin
isScrolling := true;
OnSongDeselect;