Skip to content

Commit

Permalink
Add support for .bmp files
Browse files Browse the repository at this point in the history
  • Loading branch information
dukus committed Dec 19, 2015
1 parent 6d98ea7 commit f85f4d1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions CameraControl.Core/Classes/PhotoSession.cs
Expand Up @@ -48,9 +48,17 @@ public class PhotoSession : BaseFieldClass
private object _locker = new object();
private string _lastFilename = null;

[JsonIgnore]
[XmlIgnore]
public List<string> SupportedExtensions = new List<string> { ".jpg", ".nef", ".tif", ".png", ".cr2", ".mov", ".avi" };
[JsonIgnore] [XmlIgnore] public List<string> SupportedExtensions = new List<string>
{
".jpg",
".nef",
".tif",
".png",
".bmp",
".cr2",
".mov",
".avi"
};

[JsonIgnore]
[XmlIgnore]
Expand Down

0 comments on commit f85f4d1

Please sign in to comment.