aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Game/Code/Screens/UScreenEditSub.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/Game/Code/Screens/UScreenEditSub.pas b/Game/Code/Screens/UScreenEditSub.pas
index 184a0a6c..6389edfb 100644
--- a/Game/Code/Screens/UScreenEditSub.pas
+++ b/Game/Code/Screens/UScreenEditSub.pas
@@ -370,18 +370,18 @@ begin
// Save Song
if SDL_ModState = KMOD_LSHIFT then
begin
- if (AktSong.Medley.Source = msTag) then
+ if (AktSong.isDuet) then
begin
- ScreenPopupError.ShowPopup('Medley with Relative is not supported!');
+ ScreenPopupError.ShowPopup('Duet with Relative is not supported!');
Exit;
end;
- if (AktSong.isDuet) then
+ if (AktSong.Medley.Source = msTag) then
begin
- ScreenPopupError.ShowPopup('Duet with Relative is not supported!');
- Exit;
+ ScreenPopupError.ShowPopup('Medley with Relative is not supported! Medley-Tags deleted!');
end;
+ AktSong.Medley.Source := msNone;
SResult := SaveSong(AktSong, Czesci, Path + FileName, true); //save with relative
end else
SResult := SaveSong(AktSong, Czesci, Path + FileName, false);