diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-17 10:42:45 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-17 10:42:45 +0000 |
commit | 718855f7191c9d4963da9977ee49d155e376691b (patch) | |
tree | b207de66be113c120833c9030b81a9f37fc6ffb8 | |
parent | f11d9806f4623dc4dbf14e521624109b7a69b86b (diff) | |
download | usdx-718855f7191c9d4963da9977ee49d155e376691b.tar.gz usdx-718855f7191c9d4963da9977ee49d155e376691b.tar.xz usdx-718855f7191c9d4963da9977ee49d155e376691b.zip |
Now when no Cat, Search or Playlist is shown, the Text specified in Theme for TextCat is shown
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@207 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Screens/UScreenSong.pas | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenSong.pas b/Game/Code/Screens/UScreenSong.pas index 95550a32..31d05dce 100644 --- a/Game/Code/Screens/UScreenSong.pas +++ b/Game/Code/Screens/UScreenSong.pas @@ -170,8 +170,11 @@ var I, I2: Integer; procedure TScreenSong.HideCatTL;
begin
//Hide
- Text[TextCat].Visible := false;
+ //Text[TextCat].Visible := false;
Static[StaticCat].Visible := false;
+ //New -> Show Text specified in Theme
+ Text[TextCat].Visible := True;
+ Text[TextCat].Text := Theme.Song.TextCat.Text;
end;
//Show Cat in Top Left Mod End
|