SL-13470 Media on a prim loops when it should not

master
Andrey Kleshchev 2022-02-09 01:26:18 +02:00
parent 8c64cc63cd
commit b9e0f5fd3b
1 changed files with 2 additions and 1 deletions

View File

@ -647,7 +647,8 @@ void MediaPluginLibVLC::receiveMessage(const char* message_string)
}
else if (message_name == "set_loop")
{
mIsLooping = true;
bool loop = message_in.getValueBoolean("loop");
mIsLooping = loop;
}
else if (message_name == "set_volume")
{