diff options
Diffstat (limited to 'linden/indra/llui/llfloater.cpp')
-rw-r--r-- | linden/indra/llui/llfloater.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/llui/llfloater.cpp b/linden/indra/llui/llfloater.cpp index b45661f..77fddfb 100644 --- a/linden/indra/llui/llfloater.cpp +++ b/linden/indra/llui/llfloater.cpp | |||
@@ -1252,10 +1252,13 @@ BOOL LLFloater::getEditModeEnabled() | |||
1252 | //static | 1252 | //static |
1253 | void LLFloater::show(LLFloater* floaterp) | 1253 | void LLFloater::show(LLFloater* floaterp) |
1254 | { | 1254 | { |
1255 | if (floaterp) floaterp->open(); | 1255 | if (floaterp) |
1256 | if (floaterp->getHost()) | ||
1257 | { | 1256 | { |
1258 | floaterp->getHost()->open(); | 1257 | floaterp->open(); |
1258 | if (floaterp->getHost()) | ||
1259 | { | ||
1260 | floaterp->getHost()->open(); | ||
1261 | } | ||
1259 | } | 1262 | } |
1260 | } | 1263 | } |
1261 | 1264 | ||