This commit is contained in:
Matthew Hodgson 2017-11-15 09:56:44 +00:00
parent 546b062d82
commit e91e94fd42
2 changed files with 8 additions and 0 deletions

View file

@ -922,6 +922,11 @@ module.exports = React.createClass({
styleElements[theme].disabled = false;
const switchTheme = function() {
// we re-enable our theme here just in case we raced with another
// theme set request as per https://github.com/vector-im/riot-web/issues/5601.
// We could alternatively lock or similar to stop the race, but
// this is probably good enough for now.
styleElements[theme].disabled = false;
Object.values(styleElements).forEach((a) => {
if (a == styleElements[theme]) return;
a.disabled = true;