Merge pull request #2 from f111fei/patch-1

bug fixed Window.showQuickPick and then press ESC
This commit is contained in:
Greg Van Liew 2015-12-14 09:19:28 -08:00
Родитель 47b92b4777 d6930dd189
Коммит 488a803861
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -117,11 +117,14 @@ function textFunctions() {
case "ASCII Art":
// build a full list of the fonts for the drop down
items = [];
figlet.fontsSync().forEach(function(font) {
figlet.fontsSync().forEach(function(font) {
items.push({ label: font, description: "User the " + font + " font" });
}, this);
Window.showQuickPick(items).then(function(selection) {
if (!selection) {
return;
}
processSelection(e, d, sel, figlet.textSync, [selection.label]);
});
break;