Move OnLoad to base type
This commit is contained in:
parent
2860f4097e
commit
e934bb40ff
3 changed files with 6 additions and 12 deletions
|
|
@ -260,6 +260,12 @@ namespace MatterHackers.MatterControl.CustomWidgets
|
|||
base.OnMouseDown(mouseEvent);
|
||||
}
|
||||
|
||||
public async override void OnLoad(EventArgs args)
|
||||
{
|
||||
await this.LoadItemThumbnail();
|
||||
base.OnLoad(args);
|
||||
}
|
||||
|
||||
public override void OnMouseMove(MouseEventArgs mouseEvent)
|
||||
{
|
||||
var delta = mouseDownAt - mouseEvent.Position;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue