diff --git a/SpineViewer/src/SpineListView.cs b/SpineViewer/src/SpineListView.cs index 260f85e..39c6bad 100644 --- a/SpineViewer/src/SpineListView.cs +++ b/SpineViewer/src/SpineListView.cs @@ -36,9 +36,9 @@ namespace SpineViewer /// private void Insert(int index = -1) { - // 如果索引无效则插在开头 + // 如果索引无效则在末尾添加 if (index < 0 || index > spines.Count) - index = 0; + index = spines.Count; var dialog = new OpenSpineDialog(); if (dialog.ShowDialog() != DialogResult.OK)