Skip to content

Commit

Permalink
chores: 同步 Hex-Dragon#4360 有关下载任务名称的修改
Browse files Browse the repository at this point in the history
  • Loading branch information
Pigeon0v0 committed Sep 22, 2024
1 parent ff6239b commit f0b32ab
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,13 @@
RunInNewThread(
Sub()
Try
Dim Desc As String = If(Project.Type = CompType.ModPack, "整合包", If(Project.Type = CompType.Mod, "Mod ", "资源包"))
Dim Desc As String = "资源"
Select Case Project.Type
Case CompType.ModPack : Desc = "整合包"
Case CompType.Mod : Desc = "Mod "
Case CompType.ResourcePack : Desc = "资源包"
Case CompType.Shader : Desc = "光影包"
End Select
'确认默认保存位置
Dim DefaultFolder As String = Nothing
If Project.Type = CompType.Mod Then
Expand Down

0 comments on commit f0b32ab

Please sign in to comment.