diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-10-31 23:01:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 23:01:16 +0200 |
commit | afc08372b10d9c07c90d176dc45f8db8244215c9 (patch) | |
tree | 1f34b6048b3193a88a43bef61148722a1ced5c8e /indra/llui | |
parent | 0e10127081c97cfb7931ab9c99eb0e07ad42860a (diff) |
SL-20537 Add hover-preview for My Outfit list
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lltooltip.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/llui/lltooltip.cpp b/indra/llui/lltooltip.cpp index a6552d4ff1..328d36c6e1 100644 --- a/indra/llui/lltooltip.cpp +++ b/indra/llui/lltooltip.cpp @@ -440,7 +440,13 @@ void LLToolTipMgr::createToolTip(const LLToolTip::Params& params) tooltip_params.rect = LLRect (0, 1, 1, 0); if (tooltip_params.create_callback.isProvided()) - mToolTip = tooltip_params.create_callback()(tooltip_params); + { + mToolTip = tooltip_params.create_callback()(tooltip_params); + if (mToolTip == NULL) + { + return; + } + } else mToolTip = LLUICtrlFactory::create<LLToolTip> (tooltip_params); @@ -492,7 +498,7 @@ void LLToolTipMgr::show(const LLToolTip::Params& params) { if (!params.styled_message.isProvided() && (!params.message.isProvided() || params.message().empty()) - && !params.image.isProvided()) return; + && !params.image.isProvided() && !params.create_callback.isProvided()) return; // fill in default tooltip params from tool_tip.xml LLToolTip::Params params_with_defaults(params); |