Merge pull request #2209 from ivandrofly/get_dictionaries

[GetDictionaries] - Set index to zero when done looping.
This commit is contained in:
Nikolaj Olsson 2017-02-09 18:57:00 +01:00 committed by GitHub
commit 6a21b64a7a

View File

@ -71,8 +71,8 @@ namespace Nikse.SubtitleEdit.Forms
_dictionaryDownloadLinks.Add(downloadLink);
_descriptions.Add(description);
}
comboBoxDictionaries.SelectedIndex = 0;
}
comboBoxDictionaries.SelectedIndex = 0;
}
}