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
When choosing Window.SetBorder(BorderNone) and Window.SetTitleButtons(ButtonDefault), while the border will not be drawn, there is still an empty border which wastes the screen space. Is there a way to avoid that?
The text was updated successfully, but these errors were encountered:
What happens if you window.SetPaddings(0,0)? Default is (1,1). The look may be what you want but it may adds some undesirable issues: e.g, controls on borders(at least top and bottom lines) would not receive mouse events because "mouse" processing method in Window does not check padding size.
hah, window.SetPaddings(0, 0) worked in a way. Seems that it still draws the empty borders, but does the coordinate calculations right. I'll fix it and submit a PR.
When choosing
Window.SetBorder(BorderNone)
andWindow.SetTitleButtons(ButtonDefault)
, while the border will not be drawn, there is still an empty border which wastes the screen space. Is there a way to avoid that?The text was updated successfully, but these errors were encountered: