1. #1
    Deleted

    How to disable middle mouse button using action bars?

    This might be little known but an annoying default behavior of the game is to use any of the main mouse buttons for clicking bars. But I'd like to avoid using middle mouse because I must use it on other stuff that are spammed in fight and may accidentally go over an action bar and I can not bind it elsewhere because Logitech's latest software sucks and I must use its internal-memory mode that works across all software the same (and I need middle mouse button where it is bound on hardware to stay that way).

    The addon I use is bartender for action bars but I doubt it changes anything, and it has no such option (in itself).

  2. #2
    Did you try looking in the keybinds and make sure that it isn't bound to anything.?

  3. #3
    A very crude hack would be replacing the following line (625) in the file 'Bartender4\libs\LibActionButton-1.0\LibActionButton-1.0.lua':

    self:RegisterForClicks(self.config.clickOnDown and "AnyDown" or "AnyUp")
    with

    self:RegisterForClicks(self.config.clickOnDown and "LeftButtonDown" or "LeftButtonUp")
    This will make that all buttons created with the LibActionButton library (which bartender is using) will only accept left clicks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •