Quest Yarbrough
Quest Yarbrough
Fixed the "window size increasing" behavior, updated `windows/build.md` with some findings from @littleli , & force pushed a single latest commit to this PR. I ended up deleting handler in...
RE: I'm trying to fix #289 but ran into an issue where Windows doesn't report the dropshadow width/height until the first render of the window. This means that the shadow...
It shouldn't change unless the user changes the Windows theming (removing drop shadow), but that seems like a fine compromise for not having the intermediate possibly-bugged state while we wait...
I was able to workaround the bugged local behavior but the code is nasty. ~~Turns out that `setContentSize` uses winapi `AdjustWindowRectEx` -- this _also_ reports incorrect sizes when the titlebar...
@tonsky Are you trying to support Windows XP? To pull in `DwmGetWindowAttribute`, I needed to add both lines: ``` #include #pragma comment(lib,"dwmapi.lib") ``` This .h itself is only available on...
Added latest commit. I misspoke earlier -- this should work on Vista but won't on Windows XP. The code seems nasty to me. I suspect @tonsky will have some comments...
I see what you mean with the changes. I'll try to remove the windowShadow vars on next commit & fix the DPI calculation. I remember something in the MS docs...
@PaulSchulz I just used this to get the local template working 4 years later. Thanks!
This is pretty much my favorite Clojure library of all time, so I'm definitely interested! If you don't end up finishing this then please push your branch progress somewhere, I...
Tested on latest HumbleUI & can confirm this bug is still active. I was hoping some of the latest `main` commits about signals & vdom might've fixed it, but I...