Skip to content

Commit

Permalink
fix(always-on-top): change button order
Browse files Browse the repository at this point in the history
To be consistent with how the main window toolbar has audio mute,
hangup, and then video mute.
  • Loading branch information
virtuacoplenny authored and saghul committed May 2, 2018
1 parent 3d8d5e3 commit a793742
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions react/features/always-on-top/ToolboxAlwaysOnTop.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,17 @@ export default class ToolboxAlwaysOnTop extends Component<Props> {
onMouseOut = { onMouseOut }
onMouseOver = { onMouseOver }>
<ToolbarButton
accessibilityLabel = 'Video mute'
iconName = { videoMuteIcon }
onClick = { this._onToolbarToggleVideo } />
accessibilityLabel = 'Audio mute'
iconName = { audioMuteIcon }
onClick = { this._onToolbarToggleAudio } />
<ToolbarButton
accessibilityLabel = 'Hangup'
iconName = 'icon-hangup'
onClick = { this._onToolbarHangup } />
<ToolbarButton
accessibilityLabel = 'Audio mute'
iconName = { audioMuteIcon }
onClick = { this._onToolbarToggleAudio } />
accessibilityLabel = 'Video mute'
iconName = { videoMuteIcon }
onClick = { this._onToolbarToggleVideo } />
</div>
);
}
Expand Down

0 comments on commit a793742

Please sign in to comment.