bugfix with show frames

refactor/clean up
This commit is contained in:
Ulf
2013-06-14 20:46:54 +02:00
parent df11dfec82
commit c39fa0282d
6 changed files with 94 additions and 99 deletions

View File

@@ -38,14 +38,14 @@ namespace PreviewToy
base.OnResize(e);
if (has_been_set_up)
{
this.spawner.set_sync_size(this.Size);
this.spawner.syncronize_preview_size(this.Size);
}
}
protected override void OnMove(EventArgs e)
{
base.OnMove(e);
this.spawner.set_preview_position(this.Handle, this.Location);
this.spawner.register_preview_position(this.Handle, this.Location);
}
protected void RefreshPreview()