Skip to content

Commit

Permalink
Bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Mar 22, 2015
1 parent 53b6fb2 commit bdf2de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SonLVL/MainForm.cs
Expand Up @@ -3180,7 +3180,7 @@ private void BlockPicture_MouseClick(object sender, MouseEventArgs e)
{
if (!loaded || e.Button != MouseButtons.Right) return;
SelectedBlockTile = new Point(e.X / 32, e.Y / 32);
blockTileEditor.SelectedObject = LevelData.Blocks[SelectedBlock].Tiles[e.X / 32, e.Y / 32];
copiedBlockTile = blockTileEditor.SelectedObject = LevelData.Blocks[SelectedBlock].Tiles[e.X / 32, e.Y / 32];
DrawBlockPicture();
}

Expand Down

0 comments on commit bdf2de0

Please sign in to comment.