mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
TextArea now correctly sets the disabled state of its textarea element.
This commit is contained in:
parent
fb0f49611a
commit
d69a0cbc00
@ -49,4 +49,10 @@ export class TextArea extends LabelledControl {
|
|||||||
protected set_value(value: string): void {
|
protected set_value(value: string): void {
|
||||||
this.text_element.value = value;
|
this.text_element.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected set_enabled(enabled: boolean): void {
|
||||||
|
super.set_enabled(enabled);
|
||||||
|
|
||||||
|
this.text_element.disabled = !enabled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user