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
Firstly, thank you for taking the initiative in creating these kinds of applications.
I have some old border code laying around that uses most of the private events that you do in this project, and I noticed a fair bit of difference in the delay when moving a window around the screen. I've attached two gifs; the first is my throwaway proof of concept and the other is commit 110b01c
old poc:
this project:
I haven't really looked at the code in detail, so can't really tell why there is that much of a difference.
My old throwaway project also uses SLSRegisterNotifyProc(global_handler, 806, NULL); to respond to window move events to re-align the border.
The text was updated successfully, but these errors were encountered:
Thanks for the heads up. I am not dragging windows with the mouse that much myself (thanks to your awesome tools).
This was probably due to my border update code being too conservative. I have implemented a separate function to handle the window move event now and it seems to be on par with what you have shown in your gif:
Firstly, thank you for taking the initiative in creating these kinds of applications.
I have some old border code laying around that uses most of the private events that you do in this project, and I noticed a fair bit of difference in the delay when moving a window around the screen. I've attached two gifs; the first is my throwaway proof of concept and the other is commit 110b01c
old poc:
this project:
I haven't really looked at the code in detail, so can't really tell why there is that much of a difference.
My old throwaway project also uses
SLSRegisterNotifyProc(global_handler, 806, NULL);
to respond to window move events to re-align the border.The text was updated successfully, but these errors were encountered: