yangjie #35

Merged
yangqiang merged 8 commits from yangjie into master 2024-11-13 10:41:16 +08:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit cbc58e4057 - Show all commits

View File

@ -989,9 +989,11 @@ const Meeting: React.FC = () => {
const percentage = (item.volume / 255) * 100 const percentage = (item.volume / 255) * 100
dom.style.height = `${percentage}%` dom.style.height = `${percentage}%`
} }
if (domMe && !item.uid) { if (!item.uid) {
const percentage = (item.volume / 255) * 100 const percentage = (item.volume / 255) * 100
domMe.style.height = `${percentage}%` if (domMe) {
domMe.style.height = `${percentage}%`
}
window.electron.windowHandleMessage({ window.electron.windowHandleMessage({
key: 'shareScreenWindow', key: 'shareScreenWindow',
parmes: { parmes: {