Skip to content
Snippets Groups Projects
Commit 2589a7e1 authored by Richard Linden's avatar Richard Linden
Browse files

fix for crash in assert when programmatically toggling user resize

parent 37593f27
No related branches found
No related tags found
No related merge requests found
......@@ -314,6 +314,8 @@ void LLLayoutStack::updatePanelAutoResize(const std::string& panel_name, BOOL au
{
panel->mAutoResize = auto_resize;
}
mNeedsLayout = true;
}
void LLLayoutStack::setPanelUserResize(const std::string& panel_name, BOOL user_resize)
......@@ -324,6 +326,8 @@ void LLLayoutStack::setPanelUserResize(const std::string& panel_name, BOOL user_
{
panel->mUserResize = user_resize;
}
mNeedsLayout = true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment