Browse Source

fix(always-on-top): change button order

To be consistent with how the main window toolbar has audio mute,
hangup, and then video mute.
master
Leonard Kim 7 years ago
parent
commit
a793742e3a
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      react/features/always-on-top/ToolboxAlwaysOnTop.js

+ 6
- 6
react/features/always-on-top/ToolboxAlwaysOnTop.js View File

@@ -101,17 +101,17 @@ export default class ToolboxAlwaysOnTop extends Component<Props> {
101 101
                 onMouseOut = { onMouseOut }
102 102
                 onMouseOver = { onMouseOver }>
103 103
                 <ToolbarButton
104
-                    accessibilityLabel = 'Video mute'
105
-                    iconName = { videoMuteIcon }
106
-                    onClick = { this._onToolbarToggleVideo } />
104
+                    accessibilityLabel = 'Audio mute'
105
+                    iconName = { audioMuteIcon }
106
+                    onClick = { this._onToolbarToggleAudio } />
107 107
                 <ToolbarButton
108 108
                     accessibilityLabel = 'Hangup'
109 109
                     iconName = 'icon-hangup'
110 110
                     onClick = { this._onToolbarHangup } />
111 111
                 <ToolbarButton
112
-                    accessibilityLabel = 'Audio mute'
113
-                    iconName = { audioMuteIcon }
114
-                    onClick = { this._onToolbarToggleAudio } />
112
+                    accessibilityLabel = 'Video mute'
113
+                    iconName = { videoMuteIcon }
114
+                    onClick = { this._onToolbarToggleVideo } />
115 115
             </div>
116 116
         );
117 117
     }

Loading…
Cancel
Save