Merge branches

This commit is contained in:
Pieter Vander Vennet 2020-07-22 11:05:04 +02:00
commit 00fb99defe
117 changed files with 3104 additions and 1424 deletions

View file

@ -4,6 +4,7 @@ import { FilteredLayer } from "../../Logic/FilteredLayer";
export class CheckBox extends UIElement{
private data: UIEventSource<boolean>;
private readonly _data: UIEventSource<boolean>;
private readonly _showEnabled: string|UIElement;
@ -21,7 +22,7 @@ export class CheckBox extends UIElement{
}
protected InnerRender(): string {
InnerRender(): string {
if (this._data.data) {
return this._showEnabled;
} else {