Further pluggged in LLView::Params. For now just used for a few exclusively hard-coded elements. XUI parsing not yet implemented. New element registry not yet implemented.
This commit is contained in:
@@ -1656,7 +1656,12 @@ LLViewerWindow::LLViewerWindow(
|
||||
LLUICtrlFactory::getXUIPaths());
|
||||
}
|
||||
// Create container for all sub-views
|
||||
mRootView = new LLRootView("root", mWindowRectScaled, FALSE);
|
||||
LLView::Params rvp;
|
||||
rvp.name("root");
|
||||
rvp.rect(mWindowRectScaled);
|
||||
rvp.mouse_opaque(false);
|
||||
rvp.follows.flags(FOLLOWS_NONE);
|
||||
mRootView = LLUICtrlFactory::create<LLRootView>(rvp);
|
||||
|
||||
// Make avatar head look forward at start
|
||||
mCurrentMousePoint.mX = getWindowWidthScaled() / 2;
|
||||
|
||||
Reference in New Issue
Block a user