Slightly better cursor and fixed downloader
This commit is contained in:
parent
327e97f444
commit
7f2ff790b6
3 changed files with 2 additions and 2 deletions
|
@ -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 |
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue