AceGUI - additions to label widget #228


  • New
  • Enhancment
Open
Assigned to nevcairiel
  • _ForgeUser320707 created this issue Feb 10, 2011

    What I had in mind:

    1. Adding the ability to change the label’s JustifyH
    2. Adding the ability to change the label’s JustifyV
    3. Letting the programmer decide where the label’s image is anchored

    The first two changes are quite trivial:

    local methods = {
        ...
        ["SetJustifyH"] = function(self, justification)
            self.label:SetJustifyH(justification)
        end,
        ["SetJustifyV"] = function(self, justification)
            self.label:SetJustifyV(justification)
        end
    }
  • _ForgeUser320707 added the tags New Enhancment Feb 10, 2011
  • Forge_User_32547785 posted a comment Jun 5, 2013

    I'm especially interested in the justification personally.


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