FIRE-29542 - only update UI when another set is actually selected

master
Zi Ree 2020-05-06 17:09:26 +02:00
parent 6935e7a303
commit be3c11bd10
1 changed files with 7 additions and 3 deletions

View File

@ -341,10 +341,14 @@ void FloaterAO::onSelectSet()
return;
}
mSelectedSet=set;
// only update the interface when we actually selected a different set - FIRE-29542
if (mSelectedSet != set)
{
mSelectedSet=set;
updateSetParameters();
updateAnimationList();
updateSetParameters();
updateAnimationList();
}
}
void FloaterAO::onSelectSetSmall()