reconfigure terminals on DPI change (fixes #576)

This commit is contained in:
Eugene Pankov
2019-02-10 00:23:49 +01:00
parent 100436f511
commit 329d0448d3
4 changed files with 16 additions and 0 deletions

View File

@@ -265,6 +265,10 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
this.hostApp.windowMoved$.subscribe(() => setTimeout(() => {
this.configure()
}, 250)),
this.hostApp.displayMetricsChanged$.subscribe(() => setTimeout(() => {
this.configure()
}, 250)),
]
}