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
NWJS Version : SDK 0.26.0
Operating System : Win7 x64
Expected behavior
The right side of the window should not display a border and the cursor should not change when moving over it
Actual behavior
The right side of the window is displaying a border and when moving the cursor over it changes to the e-resize cursor, confirming that the right side resize is still in effect while maximized
How to reproduce
Basic app template with option to maximize.
Window must be set to transparent and frameless.
Using package.nw method
<!DOCTYPE html><htmlstyle="background:rgba(0,0,0,0.5);height:100%"><head></head><body><buttononclick="resize();return false;">Click to maximize/restore</button><script>varis_maximized=false;vargui=require("nw.gui");varwin=gui.Window.get();win.on("restore",()=>is_maximized=false);win.on("maximize",()=>is_maximized=true);functionresize(){if(is_maximized){win.restore();}else{win.maximize();}}</script></body></html>
Short recording demonstrating the problem. The window is maximized and the right side has a white border, which cannot be seen in the GitHub white background, I suggest opening this recording in a window with a dark background.
The text was updated successfully, but these errors were encountered:
NWJS Version : SDK 0.26.0
Operating System : Win7 x64
Expected behavior
The right side of the window should not display a border and the cursor should not change when moving over it
Actual behavior
The right side of the window is displaying a border and when moving the cursor over it changes to the e-resize cursor, confirming that the right side resize is still in effect while maximized
How to reproduce
Basic app template with option to maximize.
Window must be set to transparent and frameless.
Using package.nw method
package.json
index.html
Short recording demonstrating the problem. The window is maximized and the right side has a white border, which cannot be seen in the GitHub white background, I suggest opening this recording in a window with a dark background.
The text was updated successfully, but these errors were encountered: