Fix layering for egg-related UIs when option select is visible
This commit is contained in:
parent
4c07c6d5cb
commit
831bc75560
|
@ -231,6 +231,8 @@ export default class EggGachaUiHandler extends MessageUiHandler {
|
|||
|
||||
this.updateVoucherCounts();
|
||||
|
||||
this.getUi().bringToTop(this.eggGachaContainer);
|
||||
|
||||
this.eggGachaContainer.setVisible(true);
|
||||
|
||||
return true;
|
||||
|
|
|
@ -91,6 +91,8 @@ export default class EggListUiHandler extends MessageUiHandler {
|
|||
show(args: any[]): boolean {
|
||||
super.show(args);
|
||||
|
||||
this.getUi().bringToTop(this.eggListContainer);
|
||||
|
||||
this.eggListContainer.setVisible(true);
|
||||
|
||||
let e = 0;
|
||||
|
|
Loading…
Reference in New Issue