You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 24, 2022. It is now read-only.
Merging #332 introduced a bug that prevents the window from resizing when you change between pages.
See error message below:
I've already investigated the issue and found that it occurs in fether-electron/src/main/app/messages/index.js upon an 'app-resize' event, where the args[0] value may be a float value, and because we use that value to set the new height of the window, it causes an error, because we pass the value as an argument to setContentSizehttps://electronjs.org/docs/all#winsetcontentsizewidth-height-animate, which only accepts integers arguments for width and height.
The text was updated successfully, but these errors were encountered:
Merging #332 introduced a bug that prevents the window from resizing when you change between pages.
See error message below:
I've already investigated the issue and found that it occurs in fether-electron/src/main/app/messages/index.js upon an 'app-resize' event, where the
args[0]
value may be a float value, and because we use that value to set the new height of the window, it causes an error, because we pass the value as an argument tosetContentSize
https://electronjs.org/docs/all#winsetcontentsizewidth-height-animate, which only accepts integers arguments for width and height.The text was updated successfully, but these errors were encountered: