Slightly better cursor and fixed downloader

This commit is contained in:
Michael 2017-02-04 17:56:59 -05:00
parent 327e97f444
commit 7f2ff790b6
3 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,6 @@ namespace ShiftOS.WinForms.Applications
public void OnSkinLoad()
{
SetupUI();
}
public bool OnUnload()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -148,7 +148,8 @@ namespace ShiftOS.WinForms.Tools
var gfx = Graphics.FromImage(mBmp);
var handle = mBmp.GetHicon();
ctrl.Cursor = new Cursor(handle);
var cursor = new Cursor(handle);
ctrl.Cursor = cursor;
}
}