Scroll Bar showing when 'Disable Buttons' selected #1207


Open
  • lock14 created this issue Jul 23, 2018

    Prior to the 8.0 patch, when selecting the 'Disable Buttons' option the chat scroll bar would also be hidden. In the new version of chatter the scroll bar still shows even if 'Disable Buttons' is selected.

  • Shimiya posted a comment Aug 28, 2018

    Hi,

     

    Finally found a workaround for this issue :

     

    "Remove Scroll Bar and bottom from chat" at :

     

    https://www.mmo-champion.com/threads/2412704-Guide-hide-anything-you-want-on-the-default-interface

     

    https://www.reddit.com/r/wow/comments/905eq5/how_to_fix_broken_addonselements_small_compilation/

     

    This is just some instructions to make your own "addon", I personally did not downloaded and make it by myself :

     

    - Create a folder named "HideChatScroll" in your "Interface > AddOns" folder

     

    - Create a HideChatScroll.txt, change file extension to .lua, and insert :

    local b = ChatFrame1.ScrollToBottomButton b:UnregisterAllEvents() b:SetScript("OnShow", b.Hide) b:Hide()
    local b = ChatFrame1.ScrollBar b:UnregisterAllEvents() b:SetScript("OnShow", b.Hide) b:Hide()
    local b = ChatFrame2.ScrollToBottomButton b:UnregisterAllEvents() b:SetScript("OnShow", b.Hide) b:Hide()
    local b = ChatFrame2.ScrollBar b:UnregisterAllEvents() b:SetScript("OnShow", b.Hide) b:Hide()

    A duet of lines for each tab you have in your chat window (1, 2, 3...)

     

    - Create a HideChatScroll.txt again, change file extension to .toc, and insert :

    ## Interface: 80000
    ## Title: HideChatScroll
    ## Notes: Hides the chat frame scroll bars
    ## Author: Your Name
    HideChatScroll.lua

    That's all & that's work for me.


    Edited Aug 28, 2018

To post a comment, please login or register a new account.