mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-29 03:32:24 +02:00
Fixed bug of overlapping labels in text filters
This commit is contained in:
parent
8d27907336
commit
125b8ba3df
@ -103,7 +103,6 @@ export default class PokedexScanUiHandler extends FormModalUiHandler {
|
|||||||
|
|
||||||
|
|
||||||
// args[2] is an index of FilterTextRow
|
// args[2] is an index of FilterTextRow
|
||||||
//TODO: This logic is probably way more complex than we need, and actually messes things up for moves and abilities with a space like "Leech Seed"
|
|
||||||
show(args: any[]): boolean {
|
show(args: any[]): boolean {
|
||||||
this.row = args[2];
|
this.row = args[2];
|
||||||
const ui = this.getUi();
|
const ui = this.getUi();
|
||||||
@ -179,4 +178,13 @@ export default class PokedexScanUiHandler extends FormModalUiHandler {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clear(): void {
|
||||||
|
super.clear();
|
||||||
|
|
||||||
|
// Clearing the labels so they don't appear again and overlap
|
||||||
|
this.formLabels.forEach(label => {
|
||||||
|
label.destroy();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user