Fixed visual bug that made a thin white line appear at the top of the 3D View when activating it via its tab.

This commit is contained in:
Daan Vanden Bosch 2020-09-25 20:23:28 +02:00
parent a3a532d291
commit ddb4ba0cc6
2 changed files with 2 additions and 1 deletions

View File

@ -224,7 +224,7 @@ export type NpcTypeData = {
*/
readonly regular?: boolean;
/**
* Default object-specific properties.
* Default NPC-specific properties.
*/
readonly properties: readonly EntityProp[];
};

View File

@ -19,6 +19,7 @@ export abstract class QuestRendererView extends ResizableView {
super();
this.element = div({ className, tabIndex: -1 });
this.element.style.outline = "none";
this.renderer = renderer;
this.renderer_widget = this.add(new RendererWidget(this.renderer));
this.element.append(this.renderer_widget.element);