From 63ddbd9f1b7c86a26879583ac4dbf5df14964aec Mon Sep 17 00:00:00 2001 From: MayNL Date: Sun, 28 Jun 2026 19:31:33 -0400 Subject: [PATCH] Save message pop up now states the current tab name --- PCK-Studio/Controls/Editor/PckEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Controls/Editor/PckEditor.cs b/PCK-Studio/Controls/Editor/PckEditor.cs index 4ffdecc7..3addb7ce 100644 --- a/PCK-Studio/Controls/Editor/PckEditor.cs +++ b/PCK-Studio/Controls/Editor/PckEditor.cs @@ -221,7 +221,7 @@ namespace PckStudio.Controls { _timesSaved++; _wasModified = false; - MessageBox.Show("Pck Saved.", "Saved"); + MessageBox.Show($"{TitleName} saved.", "PCK successfully Saved"); Debug.WriteLine($"_timesSaved: {_timesSaved}"); }