We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c00366d commit 74aa1e3Copy full SHA for 74aa1e3
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