Skip to content

Commit

Permalink
Use better MoveGlyph
Browse files Browse the repository at this point in the history
  • Loading branch information
RussKie committed May 14, 2021
1 parent 250b0d9 commit 8de4b5a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<EmbeddedResource Include="Resources\System\WinForms\Design\InheritedGlyph.ico">
<LogicalName>System.Windows.Forms.Design.InheritedGlyph</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\System\WinForms\Design\MoverGlyph.ico">
<EmbeddedResource Include="Resources\System\WinForms\Design\MoverGlyph.bmp">
<LogicalName>System.Windows.Forms.Design.Behavior.MoverGlyph</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\System\WinForms\Design\ImageEditor.ico">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private Bitmap MoveGlyph
{
if (_glyph is null)
{
_glyph = new Icon(typeof(ContainerSelectorGlyph), "MoverGlyph").ToBitmap();
_glyph = new Bitmap(typeof(ContainerSelectorGlyph), "MoverGlyph");
}

return _glyph;
Expand Down

0 comments on commit 8de4b5a

Please sign in to comment.