aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-06 21:16:50 -0700
committerMcCabe Maxsted2009-09-06 21:16:50 -0700
commit64eb2443a4a6d11e9dd01d9c15333b8a85c93df8 (patch)
treeb20f344e06e7ae01480210ec5e4c14899fc0775d
parentPorted phantom avatar option from Emerald viewer (diff)
downloadmeta-impy-64eb2443a4a6d11e9dd01d9c15333b8a85c93df8.zip
meta-impy-64eb2443a4a6d11e9dd01d9c15333b8a85c93df8.tar.gz
meta-impy-64eb2443a4a6d11e9dd01d9c15333b8a85c93df8.tar.bz2
meta-impy-64eb2443a4a6d11e9dd01d9c15333b8a85c93df8.tar.xz
Start fetching inventory at startup
-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();