1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 06:52:56 +08:00

Fix notification text not including export filename

This commit is contained in:
Dean Herbert 2023-05-05 16:53:27 +09:00
parent 9cafb20fcb
commit fc2d2de34c

View File

@ -112,7 +112,7 @@ namespace osu.Game.Database
ProgressNotification notification = new ProgressNotification ProgressNotification notification = new ProgressNotification
{ {
State = ProgressNotificationState.Active, State = ProgressNotificationState.Active,
Text = "Exporting...", Text = $"Exporting {itemFilename}...",
}; };
PostNotification?.Invoke(notification); PostNotification?.Invoke(notification);