yangjie #22

Merged
yangqiang merged 99 commits from yangjie into master 2024-10-22 16:11:46 +08:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit e117c03e37 - Show all commits

View File

@ -10,6 +10,10 @@ const NoticeWindow: React.FC = () => {
});
const channel = new BroadcastChannel('meeting_channel');
useEffect(() => {
window.electron.setChildWindowShow({
key: 'noticeWindow',
bool: false
})
channel.onmessage = function (event) {
const { type, noticeItem } = event.data;
switch (type) {

View File

@ -1702,6 +1702,12 @@ const Meeting: React.FC = () => {
userId: userInfo.uid
})
}
setIsScreenCapture(bool => {
if (bool) {
allUserLook(userItem.screenShareId, userItem.userName)
}
return bool
})
return res
})