summaryrefslogtreecommitdiff
path: root/indra/newview/llfloateroutbox.cpp
diff options
context:
space:
mode:
authorLeslie Linden <leslie@lindenlab.com>2011-12-12 17:04:58 -0800
committerLeslie Linden <leslie@lindenlab.com>2011-12-12 17:04:58 -0800
commitd3f06b296203c08c900c4e569ce5df0ac2f27715 (patch)
treec870d0aba0a425f4988dab1d2b19e63ee3f03573 /indra/newview/llfloateroutbox.cpp
parent90b8fb07ccd46bd18f3629ae2ec04a47312b41cb (diff)
Fixed marketplace URL trailing '/' and updated to latest window shade code from viewer-experience
Diffstat (limited to 'indra/newview/llfloateroutbox.cpp')
-rw-r--r--indra/newview/llfloateroutbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloateroutbox.cpp b/indra/newview/llfloateroutbox.cpp
index b10ef0ba64..972e1e8cdc 100644
--- a/indra/newview/llfloateroutbox.cpp
+++ b/indra/newview/llfloateroutbox.cpp
@@ -418,14 +418,14 @@ void LLFloaterOutbox::showNotification(LLNotificationPtr notify)
params.name = "notification_shade";
params.rect = floater_rect;
params.follows.flags = FOLLOWS_ALL;
- params.notification = notify;
params.modal = true;
params.can_close = false;
+ params.shade_color = LLColor4::white % 0.25f;
params.text_color = LLColor4::white;
mWindowShade = LLUICtrlFactory::create<LLWindowShade>(params);
addChild(mWindowShade);
- mWindowShade->show();
+ mWindowShade->show(notify);
}