Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
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
JennaHuntsman
XDG Integration
Commits
98ce08c8
Commit
98ce08c8
authored
12 years ago
by
Jonathan Yap
Browse files
Options
Downloads
Patches
Plain Diff
STORM-1820 Discoverability of the menu that opens the Block List is difficult
parent
b187aeb8
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/llviewermenu.cpp
+14
-0
14 additions, 0 deletions
indra/newview/llviewermenu.cpp
indra/newview/skins/default/xui/en/menu_viewer.xml
+6
-0
6 additions, 0 deletions
indra/newview/skins/default/xui/en/menu_viewer.xml
with
21 additions
and
0 deletions
doc/contributions.txt
+
1
−
0
View file @
98ce08c8
...
...
@@ -610,6 +610,7 @@ Jonathan Yap
STORM-1788
STORM-1799
STORM-1796
STORM-1820
Kadah Coba
STORM-1060
Jondan Lundquist
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewermenu.cpp
+
14
−
0
View file @
98ce08c8
...
...
@@ -5256,6 +5256,17 @@ void toggle_debug_menus(void*)
// }
//
class
LLCommunicateBlockList
:
public
view_listener_t
{
bool
handleEvent
(
const
LLSD
&
userdata
)
{
// we just send the message and let the server check for failure cases
// server will echo back a "Home position set." alert if it succeeds
// and the home location screencapture happens when that alert is recieved
LLFloaterSidePanelContainer
::
showPanel
(
"people"
,
"panel_block_list_sidetray"
,
LLSD
());
return
true
;
}
};
class
LLWorldSetHomeLocation
:
public
view_listener_t
{
...
...
@@ -8040,6 +8051,9 @@ void initialize_menus()
// Me > Movement
view_listener_t
::
addMenu
(
new
LLAdvancedAgentFlyingInfo
(),
"Agent.getFlying"
);
// Communicate
view_listener_t
::
addMenu
(
new
LLCommunicateBlockList
(),
"Communicate.BlockList"
);
// World menu
view_listener_t
::
addMenu
(
new
LLWorldAlwaysRun
(),
"World.AlwaysRun"
);
...
...
This diff is collapsed.
Click to expand it.
indra/newview/skins/default/xui/en/menu_viewer.xml
+
6
−
0
View file @
98ce08c8
...
...
@@ -291,6 +291,12 @@
function=
"SideTray.PanelPeopleTab"
parameter=
"nearby_panel"
/>
</menu_item_call>
<menu_item_call
label=
"Block List"
name=
"Block List"
>
<menu_item_call.on_click
function=
"Communicate.BlockList"
/>
</menu_item_call>
</menu>
<menu
create_jump_keys=
"true"
...
...
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