mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
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:
parent
a3a532d291
commit
ddb4ba0cc6
@ -224,7 +224,7 @@ export type NpcTypeData = {
|
||||
*/
|
||||
readonly regular?: boolean;
|
||||
/**
|
||||
* Default object-specific properties.
|
||||
* Default NPC-specific properties.
|
||||
*/
|
||||
readonly properties: readonly EntityProp[];
|
||||
};
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user