diff options
author | James Cook <james@cookmd.com> | 2009-12-30 15:46:53 -0800 |
---|---|---|
committer | James Cook <james@cookmd.com> | 2009-12-30 15:46:53 -0800 |
commit | 4e901957f9414284fa26ca70122f952243e4122c (patch) | |
tree | d7e921bf2bd04b025fef70b444917be22401e06f /indra/newview/llfolderview.cpp | |
parent | f4e2287175ab1bc9d09fc73435a828071b9e2ba5 (diff) |
EXT-3753 Made inventory subfolders indent more.
Changed back to 8 pixel indent, as Ben Glenn was seeing confusion in
user tests with lesser indents. Made it a setting, FolderIndentation
in case we want to change in the future.
Reviewed with Leyla.
Diffstat (limited to 'indra/newview/llfolderview.cpp')
-rw-r--r-- | indra/newview/llfolderview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index 474d2ca21f..112b23d2df 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -206,7 +206,8 @@ LLFolderView::LLFolderView(const Params& p) mAutoOpenCandidate = NULL; mAutoOpenTimer.stop(); mKeyboardSelection = FALSE; - mIndentation = -LEFT_INDENTATION; // children start at indentation 0 + static LLUICachedControl<S32> indentation("FolderIndentation", 0); + mIndentation = -indentation; // children start at indentation 0 gIdleCallbacks.addFunction(idle, this); //clear label |