Roll back tree icon merge changes to fix loading icon issue (#7722)

This commit is contained in:
Charles Gagnon
2019-10-15 22:44:37 -07:00
committed by GitHub
parent e8e8ee5941
commit 77e1ca59ed

View File

@@ -154,7 +154,7 @@ export class ViewItem implements IViewItem {
}
set loading(value: boolean) {
value ? this.addClass('codicon-loading') : this.removeClass('codicon-loading');
value ? this.addClass('loading') : this.removeClass('loading'); // {{SQL CARBON EDIT}} Use old icons - codicon font icons aren't working currently #7715
}
set draggable(value: boolean) {