mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-02-16 22:08:26 +00:00
More cleanup
This commit is contained in:
parent
a336e711f1
commit
7bd1abf12a
7 changed files with 6 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -204,6 +204,8 @@ namespace FirstPlugin
|
|||
{
|
||||
OpenFileDialog ofd = new OpenFileDialog();
|
||||
ofd.Filter = ReplaceFilter;
|
||||
ofd.FileName = Text;
|
||||
|
||||
ofd.Multiselect = false;
|
||||
|
||||
if (ofd.ShowDialog() == DialogResult.OK)
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -203,6 +203,7 @@ namespace Switch_Toolbox.Library.Forms
|
|||
|
||||
SaveFileDialog sfd = new SaveFileDialog();
|
||||
sfd.Filter = Texture.ExportFilter;
|
||||
sfd.FileName = Texture.Text;
|
||||
|
||||
if (sfd.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
|
@ -260,6 +261,9 @@ namespace Switch_Toolbox.Library.Forms
|
|||
{
|
||||
ReloadTexture(e.ReplacedTexture, ActiveItem);
|
||||
listViewCustom1.Refresh();
|
||||
|
||||
if (imageEditorForm != null)
|
||||
imageEditorForm.UpdateMipDisplay();
|
||||
}
|
||||
|
||||
private void listViewCustom1_DoubleClick(object sender, EventArgs e)
|
||||
|
|
Loading…
Add table
Reference in a new issue