diff options
author | Richard Linden <none@none> | 2011-03-02 21:05:03 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2011-03-02 21:05:03 -0800 |
commit | 92403b4ea1c02d378a1157e8912f1e3976ba3772 (patch) | |
tree | 1ccb9e98a5f9f853c113b530746de70c2468d6c4 /indra/llui/llfloater.h | |
parent | 3c43ec4a9620fcd433efd8eebf5565b4acc47b6a (diff) |
SOCIAL-593 FIX Profile Window cannot be resized in minimal skin
floater view snapping rectangle is now driven by floater_snap_region view
Diffstat (limited to 'indra/llui/llfloater.h')
-rw-r--r-- | indra/llui/llfloater.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h index bb96272d02..0e83b80c89 100644 --- a/indra/llui/llfloater.h +++ b/indra/llui/llfloater.h @@ -495,10 +495,10 @@ public: // value is not defined. S32 getZOrder(LLFloater* child); - void setSnapOffsetBottom(S32 offset) { mSnapOffsetBottom = offset; } - void setSnapOffsetRight(S32 offset) { mSnapOffsetRight = offset; } + void setFloaterSnapView(LLHandle<LLView> snap_view) {mSnapView = snap_view; } private: + LLHandle<LLView> mSnapView; BOOL mFocusCycleMode; S32 mSnapOffsetBottom; S32 mSnapOffsetRight; |