We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2023dd3 commit 633562dCopy full SHA for 633562d
src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts
@@ -385,13 +385,6 @@ export class GettingStartedPage extends EditorPane {
385
stepElement.style.height = ``;
386
stepElement.style.height = `${stepElement.scrollHeight}px`;
387
388
- setTimeout(() => {
389
- // Scrollheight doesn't play nicely with the -webkit-line-clamp logic, soketomes clipped even after the first scan
390
- // rescan in a lil bit to help things along.
391
- stepElement.style.height = ``;
392
- stepElement.style.height = `${stepElement.scrollHeight}px`;
393
- }, 50);
394
-
395
if (!this.currentCategory || this.currentCategory.content.type !== 'steps') {
396
throw Error('cannot expand step for category of non steps type' + this.currentCategory?.id);
397
}
0 commit comments