Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemonaco committed Mar 31, 2020
2 parents dda1af9 + e6ec96b commit db5195f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ private void ResizeArranger(int arrangerWidth, int arrangerHeight)
return;

(_workingArranger as SequentialArranger).Resize(arrangerWidth, arrangerHeight);
CreateGridlines();
Render();
}

Expand Down Expand Up @@ -280,6 +281,7 @@ private void ChangeCodec()
SnapMode = SnapMode.Pixel;
}

CreateGridlines();
Render();

NotifyOfPropertyChange(() => IsTiledLayout);
Expand All @@ -291,6 +293,7 @@ private void ChangeCodecDimensions(int width, int height)
{
var codec = _codecService.CodecFactory.GetCodec(SelectedCodecName, width, height);
(_workingArranger as SequentialArranger).ChangeCodec(codec);
CreateGridlines();
Render();
}

Expand Down

0 comments on commit db5195f

Please sign in to comment.