Skip to content

Commit

Permalink
Capitalized size names
Browse files Browse the repository at this point in the history
  • Loading branch information
Lavius Motileng committed Apr 23, 2020
1 parent 39db13c commit 12076cc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public ImageResizerProperties()

ImageresizerSizes = new ImageresizerSizes(new ObservableCollection<ImageSize>()
{
new ImageSize(0, "small", ResizeFit.Fit, 854, 480, ResizeUnit.Pixel),
new ImageSize(1, "medium", ResizeFit.Fit, 1366, 768, ResizeUnit.Pixel),
new ImageSize(2, "large", ResizeFit.Fit, 1920, 1080, ResizeUnit.Pixel),
new ImageSize(3, "phone", ResizeFit.Fit, 320, 568, ResizeUnit.Pixel),
new ImageSize(0, "Small", ResizeFit.Fit, 854, 480, ResizeUnit.Pixel),
new ImageSize(1, "Medium", ResizeFit.Fit, 1366, 768, ResizeUnit.Pixel),
new ImageSize(2, "Large", ResizeFit.Fit, 1920, 1080, ResizeUnit.Pixel),
new ImageSize(3, "Phone", ResizeFit.Fit, 320, 568, ResizeUnit.Pixel),
});

ImageresizerKeepDateModified = new BoolProperty();
Expand Down

0 comments on commit 12076cc

Please sign in to comment.