1
0
mirror of synced 2024-11-28 17:30:57 +01:00

Disable by default until it's finished

This commit is contained in:
KillzXGaming 2019-05-04 13:08:09 -04:00
parent 9cb712cf12
commit f351f30eb7
4 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@ -116,7 +116,7 @@ namespace Switch_Toolbox.Library.Forms
public bool HasGreenChannel = true;
public bool HasAlphaChannel = true;
public bool UseComponetSelector = true;
public bool UseComponetSelector = false;
ImagePropertiesEditor propertiesEditor;
@ -160,6 +160,8 @@ namespace Switch_Toolbox.Library.Forms
{
InitializeComponent();
componentSelector.Checked = UseComponetSelector;
propertiesEditor = new ImagePropertiesEditor();
propertiesEditor.Dock = DockStyle.Fill;
@ -1066,6 +1068,7 @@ namespace Switch_Toolbox.Library.Forms
private void componentSelector_CheckedChanged(object sender, EventArgs e)
{
UseComponetSelector = componentSelector.Checked;
UpdateMipDisplay();
}
}
}