summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2019-08-19 13:50:17 +0300
committermaxim_productengine <mnikolenko@productengine.com>2019-08-19 13:50:17 +0300
commitbcae0366a0d3a27979a693c1c3047e51663f5f22 (patch)
treec521261683353598a0128e648e7170fbea36ecb6 /indra
parent1bfa064a4880bfed90adbeee180b117024511942 (diff)
SL-11749 FIXED Show in search grayed out at 128m minimum
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloaterland.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp
index 3098c6d118..d8f4360142 100644
--- a/indra/newview/llfloaterland.cpp
+++ b/indra/newview/llfloaterland.cpp
@@ -2209,7 +2209,7 @@ void LLPanelLandOptions::refreshSearch()
// effort to reduce search spam from small parcels. See also
// the search crawler "grid-crawl.py" in secondlife.com/doc/app/search/ JC
const S32 MIN_PARCEL_AREA_FOR_SEARCH = 128;
- bool large_enough = parcel->getArea() > MIN_PARCEL_AREA_FOR_SEARCH;
+ bool large_enough = parcel->getArea() >= MIN_PARCEL_AREA_FOR_SEARCH;
if (large_enough)
{
if (can_change)