aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ChangeLog.txt5
-rw-r--r--linden/indra/newview/llstartup.cpp4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 2849ff6..7a39188 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -14,6 +14,11 @@
14 modified: linden/indra/newview/llviewermenu.cpp 14 modified: linden/indra/newview/llviewermenu.cpp
15 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml 15 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
16 16
17
18 * Start fetching inventory at startup.
19
20 modified: linden/indra/newview/llstartup.cpp
21
17 22
182009-09-04 McCabe Maxsted <hakushakukun@gmail.com> 232009-09-04 McCabe Maxsted <hakushakukun@gmail.com>
19 24
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index aca3cac..fdc0182 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -2462,6 +2462,10 @@ bool idle_startup()
2462 2462
2463 // Have the agent start watching the friends list so we can update proxies 2463 // Have the agent start watching the friends list so we can update proxies
2464 gAgent.observeFriends(); 2464 gAgent.observeFriends();
2465
2466 // Start loading inventory
2467 gInventory.startBackgroundFetch();
2468
2465 if (gSavedSettings.getBOOL("LoginAsGod")) 2469 if (gSavedSettings.getBOOL("LoginAsGod"))
2466 { 2470 {
2467 gAgent.requestEnterGodMode(); 2471 gAgent.requestEnterGodMode();