Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
f3025b0a
Commit
f3025b0a
authored
12 years ago
by
Ansariel
Browse files
Options
Downloads
Patches
Plain Diff
STORM-1933: Certain show in search categories for parcels will not stay selected
parent
8d4b0b92
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/contributions.txt
+1
-0
1 addition, 0 deletions
doc/contributions.txt
indra/newview/llfloaterland.cpp
+4
-6
4 additions, 6 deletions
indra/newview/llfloaterland.cpp
indra/newview/skins/default/xui/en/floater_about_land.xml
+1
-1
1 addition, 1 deletion
indra/newview/skins/default/xui/en/floater_about_land.xml
with
6 additions
and
7 deletions
doc/contributions.txt
+
1
−
0
View file @
f3025b0a
...
@@ -175,6 +175,7 @@ Ansariel Hiller
...
@@ -175,6 +175,7 @@ Ansariel Hiller
STORM-1685
STORM-1685
STORM-1713
STORM-1713
STORM-1899
STORM-1899
STORM-1933
Aralara Rajal
Aralara Rajal
Ardy Lay
Ardy Lay
STORM-859
STORM-859
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llfloaterland.cpp
+
4
−
6
View file @
f3025b0a
...
@@ -2104,9 +2104,8 @@ void LLPanelLandOptions::refreshSearch()
...
@@ -2104,9 +2104,8 @@ void LLPanelLandOptions::refreshSearch()
mCheckShowDirectory
->
set
(
FALSE
);
mCheckShowDirectory
->
set
(
FALSE
);
mCheckShowDirectory
->
setEnabled
(
FALSE
);
mCheckShowDirectory
->
setEnabled
(
FALSE
);
// *TODO:Translate
const
std
::
string
&
none_string
=
LLParcel
::
getCategoryString
(
LLParcel
::
C_NONE
);
const
std
::
string
&
none_string
=
LLParcel
::
getCategoryUIString
(
LLParcel
::
C_NONE
);
mCategoryCombo
->
setValue
(
none_string
);
mCategoryCombo
->
setSimple
(
none_string
);
mCategoryCombo
->
setEnabled
(
FALSE
);
mCategoryCombo
->
setEnabled
(
FALSE
);
return
;
return
;
}
}
...
@@ -2133,10 +2132,9 @@ void LLPanelLandOptions::refreshSearch()
...
@@ -2133,10 +2132,9 @@ void LLPanelLandOptions::refreshSearch()
mCheckShowDirectory
->
set
(
show_directory
);
mCheckShowDirectory
->
set
(
show_directory
);
// Set by string in case the order in UI doesn't match the order by index.
// Set by string in case the order in UI doesn't match the order by index.
// *TODO:Translate
LLParcel
::
ECategory
cat
=
parcel
->
getCategory
();
LLParcel
::
ECategory
cat
=
parcel
->
getCategory
();
const
std
::
string
&
category_string
=
LLParcel
::
getCategory
UI
String
(
cat
);
const
std
::
string
&
category_string
=
LLParcel
::
getCategoryString
(
cat
);
mCategoryCombo
->
set
Simpl
e
(
category_string
);
mCategoryCombo
->
set
Valu
e
(
category_string
);
std
::
string
tooltip
;
std
::
string
tooltip
;
bool
enable_show_directory
=
false
;
bool
enable_show_directory
=
false
;
...
...
This diff is collapsed.
Click to expand it.
indra/newview/skins/default/xui/en/floater_about_land.xml
+
1
−
1
View file @
f3025b0a
...
@@ -1365,7 +1365,7 @@ Only large parcels can be listed in search.
...
@@ -1365,7 +1365,7 @@ Only large parcels can be listed in search.
<combo_box.item
<combo_box.item
label=
"Any Category"
label=
"Any Category"
name=
"item0"
name=
"item0"
value=
"
any
"
/>
value=
"
none
"
/>
<combo_box.item
<combo_box.item
label=
"Linden Location"
label=
"Linden Location"
name=
"item1"
name=
"item1"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment