1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 14:26:15 +08:00

Fix notification text not including export filename

This commit is contained in:
Dean Herbert
2023-05-05 16:53:27 +09:00
Unverified
parent 9cafb20fcb
commit fc2d2de34c
+1 -1
View File
@@ -112,7 +112,7 @@ namespace osu.Game.Database
ProgressNotification notification = new ProgressNotification
{
State = ProgressNotificationState.Active,
Text = "Exporting...",
Text = $"Exporting {itemFilename}...",
};
PostNotification?.Invoke(notification);