mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-27 22:04:42 +00:00
Fixed endianness checkbox not being set on open
This commit is contained in:
@@ -44,7 +44,6 @@ using System.Drawing.Drawing2D;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
|
||||
|
||||
namespace PckStudio.Controls
|
||||
{
|
||||
@@ -82,6 +81,7 @@ namespace PckStudio.Controls
|
||||
_currentEndianness = packInfo.Endianness;
|
||||
|
||||
LittleEndianCheckBox.Visible = packInfo.AllowEndianSwap;
|
||||
LittleEndianCheckBox.Checked = packInfo.Endianness == OMI.ByteOrder.LittleEndian;
|
||||
|
||||
treeViewMain.TreeViewNodeSorter = new PckNodeSorter();
|
||||
treeViewMain.DrawMode = TreeViewDrawMode.OwnerDrawText;
|
||||
@@ -770,8 +770,6 @@ namespace PckStudio.Controls
|
||||
|
||||
Bitmap customIcon = new Bitmap(skinIconWidth, skinIconHeight);
|
||||
|
||||
skin.DrawPaperDoll(xmlVersion: EditorValue.File.xmlVersion).Save("C:\\Users\\MattN\\Pictures\\icontest\\" + skin.Identifier.Id.ToString() + ".png");
|
||||
|
||||
using (Graphics gfx = Graphics.FromImage(customIcon))
|
||||
{
|
||||
gfx.InterpolationMode = InterpolationMode.NearestNeighbor;
|
||||
|
||||
Reference in New Issue
Block a user