From 8233d36f520dd4e9d44a22310bbf22325d851cf3 Mon Sep 17 00:00:00 2001 From: rainbownapkin Date: Thu, 5 Dec 2024 06:26:15 -0500 Subject: [PATCH] Fixed edge case in userlist when resizing. --- www/js/channel/chat.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/js/channel/chat.js b/www/js/channel/chat.js index 0d9ba80..05ced4f 100644 --- a/www/js/channel/chat.js +++ b/www/js/channel/chat.js @@ -180,6 +180,8 @@ class chatBox{ resizeAspect(event){ if(this.aspectLock){ this.sizeToAspect(); + }else{ + this.client.userList.clickDragger.fixCutoff(); } }