mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
fix(web): fix invalid viewer style for dynamic resizing (#829)
This commit is contained in:
@@ -478,7 +478,7 @@
|
||||
|
||||
remoteDesktopService.dynamicResizeObservable.subscribe((evt) => {
|
||||
loggingService.info(`Dynamic resize!, width: ${evt.width}, height: ${evt.height}`);
|
||||
setViewerStyle(evt.height.toString(), evt.width.toString(), true);
|
||||
setViewerStyle(evt.height.toString() + 'px', evt.width.toString() + 'px', true);
|
||||
});
|
||||
|
||||
remoteDesktopService.changeVisibilityObservable.subscribe((val) => {
|
||||
|
||||
Reference in New Issue
Block a user