Compare commits
4 Commits
5199f0b764
...
11072711b1
| Author | SHA1 | Date |
|---|---|---|
|
|
11072711b1 | |
|
|
63ce58bb96 | |
|
|
0350b596a9 | |
|
|
586f71ab02 |
|
|
@ -11,6 +11,7 @@
|
||||||
color: #EEEEEE;
|
color: #EEEEEE;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -420,12 +420,13 @@
|
||||||
.meetingContentSwiperCardShare {
|
.meetingContentSwiperCardShare {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 6%;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, 0%);
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
color: white;
|
color: white;
|
||||||
padding: 10px 20px;
|
font-size: 12px;
|
||||||
|
padding: 4px 10px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -787,7 +787,7 @@ const Meeting: React.FC = () => {
|
||||||
label: row.deviceName
|
label: row.deviceName
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
playBackDeviceId: res[1].ecordingList.find((row: any) => row.deviceId === setting.playBackDeviceId) ? setting.playBackDeviceId : res[1].playBackList.length ? res[1].playBackList[0].deviceId : null,
|
playBackDeviceId: res[1].playBackList.find((row: any) => row.deviceId === setting.playBackDeviceId) ? setting.playBackDeviceId : res[1].playBackList.length ? res[1].playBackList[0].deviceId : null,
|
||||||
ecordingVolume: res[1].ecordingVolume
|
ecordingVolume: res[1].ecordingVolume
|
||||||
}
|
}
|
||||||
window.electron.onInvoke('sendDrivers', {
|
window.electron.onInvoke('sendDrivers', {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue