From 216889416a640bf29845a2db189a52ef44b10318 Mon Sep 17 00:00:00 2001 From: MattNL Date: Sun, 30 Apr 2023 22:12:19 -0400 Subject: [PATCH] Saving an unsaved PCK now updates the file label --- PCK-Studio/MainForm.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs index fed2a657..c4d69280 100644 --- a/PCK-Studio/MainForm.cs +++ b/PCK-Studio/MainForm.cs @@ -617,6 +617,7 @@ namespace PckStudio { Save(saveFileDialog.FileName); saveLocation = saveFileDialog.FileName; + pckFileLabel.Text = "Current PCK File: " + Path.GetFileName(saveLocation); isTemplateFile = false; } }