Minor word wrap issue with settings pages built using AceConfig #696


Open
  • Alkerzor created this issue Feb 1, 2026

    I noticed a wordwrap issue in an addon's settings page, contacted the dev, and he said it was from AceConfig. I checked other addons I have, and saw the same issue present.

     

    Default UI (all other addons disabled):

     

    Default UI

    My UI:

    My UI

  • nevcairiel posted a comment Feb 1, 2026

    Your images don't work. Also ideally an author should report this with a usage example of AceConfig so it can be reproduced.

  • Alkerzor posted a comment Feb 1, 2026

    Interesting, they're showing inline here on my end.

    I'll ask the dev I was talking to if he might be willing to chime in.

     

    In the meantime, here are the images again, but from a differnet source:

     

    Default UI:

     

    My UI:

     

  • Numy posted a comment Feb 1, 2026

    Only seems to be happening at specific scales, I've tested at 70%, but seems to happen between 65% - 72ish%

    (feel free to hit me up on discord if you need anything else from me @nev)

     

    example code:

    local configPanelName = 'Test'
    local args = {}
    for i = 1, 15 do
       args['sub'..i] = {
          order = i,
          name = "Number keys for Gossip - Risky",
          desc = "Ensure scrollbar is enabled if the text becomes too long. This may taint objective frame buttons. If you encounter issues, just disable this option.",
          descStyle = "inline",
          width = "full",
          type = "toggle",
       }
    end
    
    local options = {
       type = "group",
       name = configPanelName,
       args = {
          generalGroup = {
             order = 1,
             name = "General",
             type = "group",
             args = args,
          },
       },
    }
    
    LibStub("AceConfig-3.0"):RegisterOptionsTable(configPanelName, options)
    local _, categoryID = LibStub("AceConfigDialog-3.0"):AddToBlizOptions(configPanelName)
    Settings.OpenToCategory(categoryID)

     


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