瀏覽代碼

feat(native-participants-pane) volume level state fix

master
Calin Chitu 4 年之前
父節點
當前提交
88ddb8d9b4
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      react/features/video-menu/components/native/VolumeSlider.js

+ 1
- 1
react/features/video-menu/components/native/VolumeSlider.js 查看文件

78
         super(props);
78
         super(props);
79
 
79
 
80
         this.state = {
80
         this.state = {
81
-            volumeLevel: (props._volume || 0) * VOLUME_SLIDER_SCALE
81
+            volumeLevel: props._volume || 0
82
         };
82
         };
83
 
83
 
84
         this._originalVolumeChange = this._onVolumeChange;
84
         this._originalVolumeChange = this._onVolumeChange;

Loading…
取消
儲存