Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Show more breadcrumbs
hosting
chat
fairblue
Commits
581b9caf
Commit
581b9caf
authored
12 years ago
by
Markos Calderon
Browse files
Options
Downloads
Patches
Plain Diff
UI changes to muteme button
parent
7100c535
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bigbluebutton-client/src/org/bigbluebutton/main/views/MuteMeButton.mxml
+8
-7
8 additions, 7 deletions
...client/src/org/bigbluebutton/main/views/MuteMeButton.mxml
with
8 additions
and
7 deletions
bigbluebutton-client/src/org/bigbluebutton/main/views/MuteMeButton.mxml
+
8
−
7
View file @
581b9caf
...
...
@@ -68,7 +68,6 @@ $Id: $
//rest rolledOver when the data changes because onRollOut wont be called if the row moves
if
(
UserManager
.
getInstance
().
getConference
().
amIThisUser
(
e
.
message
.
userID
))
{
if
(
e
.
message
.
talking
){
LogUtil
.
debug
(
"talking effect!!!!!!!!!!"
)
;
muteMeBtnImg
.
filters
=
[
new
GlowFilter
(
0x898989
)]
;
}
else
{
muteMeBtnImg
.
filters
=
[]
;
...
...
@@ -89,15 +88,16 @@ $Id: $
if
(
muteMeRolled
)
{
if
(
UserManager
.
getInstance
().
getConference
().
voiceMuted
)
{
muteMeBtnImg
.
source
=
images
.
audio
;
muteMeBtnTxt
.
visible
=
fals
e
;
muteMeBtnTxt
.
includeInLayout
=
fals
e
;
setStyle
(
"horizontalAlign"
,
"center
"
)
;
//muteMeBtnTxt.text = ResourceUtil.getInstance().getString("bbb.listeners.talk"
);
muteMeBtnTxt
.
visible
=
tru
e
;
muteMeBtnTxt
.
includeInLayout
=
tru
e
;
muteMeBtnTxt
.
text
=
ResourceUtil
.
getInstance
().
getString
(
"bbb.listeners.talk
"
)
;
hboxMuteMe
.
setStyle
(
"paddingTop"
,
0
)
;
}
else
{
muteMeBtnImg
.
source
=
images
.
audio_muted
;
muteMeBtnTxt
.
visible
=
true
;
muteMeBtnTxt
.
includeInLayout
=
true
;
muteMeBtnTxt
.
text
=
ResourceUtil
.
getInstance
().
getString
(
"bbb.listeners.mute"
)
;
hboxMuteMe
.
setStyle
(
"paddingTop"
,
0
)
;
}
}
else
{
if
(
UserManager
.
getInstance
().
getConference
().
voiceMuted
)
{
...
...
@@ -105,11 +105,12 @@ $Id: $
muteMeBtnTxt
.
visible
=
true
;
muteMeBtnTxt
.
includeInLayout
=
true
;
muteMeBtnTxt
.
text
=
ResourceUtil
.
getInstance
().
getString
(
"bbb.users.muteMeBtnTxt.muted"
)
;
hboxMuteMe
.
setStyle
(
"paddingTop"
,
0
)
;
}
else
{
muteMeBtnImg
.
source
=
images
.
audio
;
muteMeBtnTxt
.
visible
=
false
;
muteMeBtnTxt
.
includeInLayout
=
false
;
setStyle
(
"horizontalAlign"
,
"center"
)
;
hboxMuteMe
.
setStyle
(
"paddingTop"
,
2
)
;
//muteMeBtnTxt.text = ResourceUtil.getInstance().getString("bbb.users.muteMeBtnTxt.unmuted");
}
}
...
...
@@ -139,7 +140,7 @@ $Id: $
]]>
</mx:Script>
<mx:HBox
verticalAlign=
"middle"
horizontalAlign=
"center"
horizontalGap=
"0"
paddingLeft=
"5"
paddingTop=
"
2
"
paddingRight=
"5"
paddingBottom=
"0"
width=
"100%"
>
<mx:HBox
id=
"hboxMuteMe"
verticalAlign=
"middle"
horizontalAlign=
"center"
horizontalGap=
"0"
paddingLeft=
"5"
paddingTop=
"
0
"
paddingRight=
"5"
paddingBottom=
"0"
width=
"100%"
>
<mx:Image
id=
"muteMeBtnImg"
/>
<mx:Label
id=
"muteMeBtnTxt"
/>
</mx:HBox>
...
...
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