We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cee6eb4 + 74aa1e3 commit ae3a998Copy full SHA for ae3a998
lib/js/src/manager/screen/_ScreenManagerBase.js
@@ -545,11 +545,10 @@ class _ScreenManagerBase extends _SubManagerBase {
545
async commit () {
546
this._softButtonManager.setBatchUpdates(false);
547
this._textAndGraphicManager.setBatchUpdates(false);
548
- // order matters!
549
- const success1 = await this._softButtonManager.update();
550
- const success2 = await this._textAndGraphicManager.update();
551
552
- return success1 && success2;
+ const success = await this._textAndGraphicManager.update();
+
+ return success;
553
}
554
555
/**
0 commit comments