aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/GraphicPicker.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications/GraphicPicker.cs')
-rw-r--r--ShiftOS.WinForms/Applications/GraphicPicker.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/ShiftOS.WinForms/Applications/GraphicPicker.cs b/ShiftOS.WinForms/Applications/GraphicPicker.cs
index f299f0d..2a31815 100644
--- a/ShiftOS.WinForms/Applications/GraphicPicker.cs
+++ b/ShiftOS.WinForms/Applications/GraphicPicker.cs
@@ -46,10 +46,13 @@ namespace ShiftOS.WinForms.Applications
InitializeComponent();
SelectedLayout = layout;
Image = old;
- using(var ms = new System.IO.MemoryStream())
+ if (Image != null)
{
- Image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
- ImageAsBinary = ms.ToArray();
+ using (var ms = new System.IO.MemoryStream())
+ {
+ Image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
+ ImageAsBinary = ms.ToArray();
+ }
}
Callback = cb;
lblobjecttoskin.Text = name;