diff options
author | James Cook <james@lindenlab.com> | 2010-01-04 12:04:24 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-01-04 12:04:24 -0800 |
commit | ba9a4f80b5bd97ca3b6bd1fa01ddf1c23698a569 (patch) | |
tree | 5bbf9b645776b84f93a113f7298b5aa91daedb70 /indra/newview/llfloaterabout.cpp | |
parent | eb5a76996a1b1ce2ef30b6106287caae998dcc85 (diff) |
EXT-3779 About Secondlife window opens unexpectedly scrolled to bottom
Added explicit call to startOfDoc() to scroll to top.
Took some carriage returns out of text.
Moved compiler version to bottom down with static library versions, as
this isn't relevant to most users.
Reviewed with Kelly
Diffstat (limited to 'indra/newview/llfloaterabout.cpp')
-rw-r--r-- | indra/newview/llfloaterabout.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index e80499688e..aa343b2f69 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -167,20 +167,21 @@ BOOL LLFloaterAbout::postBuild() // Now build the various pieces support << getString("AboutHeader", args); - if (info.has("COMPILER")) - { - support << "\n\n" << getString("AboutCompiler", args); - } if (info.has("REGION")) { support << "\n\n" << getString("AboutPosition", args); } support << "\n\n" << getString("AboutSystem", args); + support << "\n"; if (info.has("GRAPHICS_DRIVER_VERSION")) { - support << "\n\n" << getString("AboutDriver", args); + support << "\n" << getString("AboutDriver", args); + } + support << "\n" << getString("AboutLibs", args); + if (info.has("COMPILER")) + { + support << "\n" << getString("AboutCompiler", args); } - support << "\n\n" << getString("AboutLibs", args); if (info.has("PACKETS_IN")) { support << '\n' << getString("AboutTraffic", args); @@ -193,11 +194,11 @@ BOOL LLFloaterAbout::postBuild() support_widget->blockUndo(); // Fix views - support_widget->setCursorPos(0); support_widget->setEnabled(FALSE); + support_widget->startOfDoc(); - credits_widget->setCursorPos(0); credits_widget->setEnabled(FALSE); + credits_widget->startOfDoc(); return TRUE; } |