FIRE-29542 - only update UI when another set is actually selected
parent
6935e7a303
commit
be3c11bd10
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue