228 - AceGUI - additions to label widget
What I had in mind:
- Adding the ability to change the label’s JustifyH
- Adding the ability to change the label’s JustifyV
- 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
}| User | When | Change |
|---|---|---|
| amitron | Feb 10, 2011 at 11:29 UTC | Create |
- 1 comment
- 1 comment
Facts
- Last updated
- Jun 05, 2013
- Reported
- Feb 10, 2011
- Status
- New - Issue has not had initial review yet.
- Type
- Enhancement - A change which is intended to better the project in some way
- Priority
- Medium - Normal priority.
- Votes
- 1
- Component
- AceGUI-3.0
- Reply
- #1
Saberos Jun 05, 2013 at 15:16 UTC - 0 likesI'm especially interested in the justification personally.