We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ba1c0 commit dfe2afdCopy full SHA for dfe2afd
1 file changed
DicewareOptionsForm.cs
@@ -51,7 +51,7 @@ private void InitializeEnumOptions()
51
_saltSources.Clear();
52
activeSaltSourcesLabel.Text = string.Empty;
53
54
- wordListsListView.Columns.Add("Word List", -1);
+ wordListsListView.Columns.Add("Word List");
55
56
ListViewGroup[] wordListCategories = EnumTools.GetCategories<WordLists>()
57
.Select(c => new ListViewGroup(c, c))
@@ -65,6 +65,8 @@ private void InitializeEnumOptions()
65
.ToArray();
66
67
wordListsListView.Items.AddRange(wordLists);
68
+
69
+ wordListsListView.Columns[0].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
70
}
71
72
protected override void OnLoad(EventArgs e)
0 commit comments