Mainbar cant be dragged.
UI/MultiBotMainUI.lua line 1112 — added click re-registration:
mainButton:RegisterForClicks("LeftButtonUp", "RightButtonUp")
Why this fixes it: the main button was created with RegisterForClicks("LeftButtonDown", "RightButtonDown"), which fires OnClick immediately on mouse-down — before WoW's drag detection threshold is reached. That consumes the mouse event and OnDragStart never fires. By re-registering for clicks on mouse-up, the drag is detected first; a click (no movement) still fires normally on release.
Issue type *
Improvement
Server/AzerothCore version
latest
Description *
Steps to reproduce
Expected behavior *
Actual behavior / Errors
No response
Crashlog / Gist link (optional)
No response
Screenshots
No response
Pre-submission checklist *
Additional context
No response