Skip to content

Commit e196347

Browse files
committed
优化 ToastService 中通知标题的格式问题
1 parent 5386fa1 commit e196347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core.Window/ToastService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void Show(string header, string text, NotificationType notificationType =
8484
: new WindowNotificationManager(windowFromIntPtr);
8585
windowToastManager.Position = NotificationPosition.BottomRight;
8686
windowToastManager!.Show(
87-
new Notification($"Kitopia{header}", text),
87+
new Notification($"{header}", text),
8888
showIcon: true,
8989
showClose: true,
9090
type: notificationType);

0 commit comments

Comments
 (0)