Skip to content

Commit 3a88ca8

Browse files
jeanp413meganrogge
andauthored
Fixes terminal find widget not showing result count (microsoft#166902)
Fixes microsoft#166901 Co-authored-by: Megan Rogge <[email protected]>
1 parent fe8043a commit 3a88ca8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,9 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
460460
if (this._container) {
461461
this._container.appendChild(findWidget.getDomNode());
462462
}
463+
if (this._lastLayoutDimensions) {
464+
findWidget.layout(this._lastLayoutDimensions.width);
465+
}
463466
return findWidget;
464467
});
465468

0 commit comments

Comments
 (0)