mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
CtrlLib: LabelBase AlignLeft typo fixed (thanks bozero)
git-svn-id: svn://ultimatepp.org/upp/trunk@15507 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
5c87eacae9
commit
6c5af00830
2 changed files with 2 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ public:
|
|||
LabelBase& SetInk(Color color) { return SetInk(color, color); }
|
||||
LabelBase& SetRightImage(const Image& bmp2, int spc = 0, bool never_hide = false);
|
||||
LabelBase& SetAlign(int align);
|
||||
LabelBase& AlignLeft() { return SetAlign(ALIGN_CENTER); }
|
||||
LabelBase& AlignLeft() { return SetAlign(ALIGN_LEFT); }
|
||||
LabelBase& AlignCenter() { return SetAlign(ALIGN_CENTER); }
|
||||
LabelBase& AlignRight() { return SetAlign(ALIGN_RIGHT); }
|
||||
LabelBase& SetVAlign(int align);
|
||||
|
|
|
|||
|
|
@ -203,6 +203,7 @@ Vector<String> GetUppDirs() {
|
|||
Vector<String> s = SplitDirs(GetVar("UPP"));
|
||||
static Vector<String> upv_dirs;
|
||||
if(!upv_loaded) {
|
||||
upv_dirs.Clear();
|
||||
FindFile ff(GetUpvDir() + "/*.*");
|
||||
while(ff) {
|
||||
if(ff.IsFolder())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue