diff --git a/ModpackUpdater.Apps.Manager/Form1.cs b/ModpackUpdater.Apps.Manager/Form1.cs index 2b52f8b..9719639 100644 --- a/ModpackUpdater.Apps.Manager/Form1.cs +++ b/ModpackUpdater.Apps.Manager/Form1.cs @@ -173,7 +173,7 @@ public partial class Form1 : RadForm, IMainApi { Name = "side", HeaderText = ActionsListLangRes.Col_Side, - Width = 150, + Width = 100, DataSource = Enum.GetValues(), }, new GridViewCheckBoxColumn @@ -188,12 +188,6 @@ public partial class Form1 : RadForm, IMainApi HeaderText = ActionsListLangRes.Col_IsZip, Width = 50, }, - new GridViewTextBoxColumn - { - Name = "zippath", - HeaderText = ActionsListLangRes.Col_ZipPath, - Width = 200, - }, new GridViewCheckBoxColumn { Name = "isdir", @@ -201,19 +195,6 @@ public partial class Form1 : RadForm, IMainApi Width = 50, IsVisible = infos is UpdateInfo, }, - new GridViewTextBoxColumn - { - Name = "srcpath", - HeaderText = ActionsListLangRes.Col_SrcPath, - Width = 250, - IsVisible = infos is UpdateInfo, - }, - new GridViewTextBoxColumn - { - Name = "destpath", - HeaderText = ActionsListLangRes.Col_DestPath, - Width = 250, - }, new GridViewComboBoxColumn { Name = "srctype", @@ -252,6 +233,25 @@ public partial class Form1 : RadForm, IMainApi Width = 350, }, new GridViewTextBoxColumn + { + Name = "zippath", + HeaderText = ActionsListLangRes.Col_ZipPath, + Width = 200, + }, + new GridViewTextBoxColumn + { + Name = "srcpath", + HeaderText = ActionsListLangRes.Col_SrcPath, + Width = 250, + IsVisible = infos is UpdateInfo, + }, + new GridViewTextBoxColumn + { + Name = "destpath", + HeaderText = ActionsListLangRes.Col_DestPath, + Width = 250, + }, + new GridViewTextBoxColumn { Name = "website", HeaderText = ActionsListLangRes.Col_Website,