Fix crash when delete tiles in tiled plugin

This commit is contained in:
fgnm
2021-06-26 21:34:53 +02:00
parent 6acb7c0d43
commit 9e10aafb34
2 changed files with 2 additions and 2 deletions
Binary file not shown.
@@ -230,8 +230,8 @@ public class GridTilesTab extends DefaultTab {
@Override
public void touchDragged (InputEvent event, float x, float y, int pointer) {
isDragging = true;
//draggingSource.setColor(new Color(255f / 255f, 94f / 255f, 0f / 255f, 0.5f));
draggingSource.setColor(new Color(0 / 255f, 0 / 255f, 0f / 255f, 0.5f));
if (draggingSource != null)
draggingSource.setColor(new Color(0 / 255f, 0 / 255f, 0f / 255f, 0.5f));
}
/**