You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Remove onMoving listner from CallView
This is not necessary since we already listen for it in CallPreview Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@@ -53,7 +53,6 @@ interface IProps {
|
||||
// Callbacks for dragging the CallView in PIP mode
|
||||
dragCallbacks?: {
|
||||
onStartMoving: (event: React.MouseEvent) => void;
|
||||
onMoving: (event: React.MouseEvent) => void;
|
||||
onEndMoving: () => void;
|
||||
}
|
||||
}
|
||||
@@ -627,7 +626,6 @@ export default class CallView extends React.Component<IProps, IState> {
|
||||
<div
|
||||
className="mx_CallView_header"
|
||||
onMouseDown={this.props.dragCallbacks?.onStartMoving}
|
||||
onMouseMove={this.props.dragCallbacks?.onMoving}
|
||||
onMouseUp={this.props.dragCallbacks?.onEndMoving}
|
||||
>
|
||||
<AccessibleButton onClick={this.onRoomAvatarClick}>
|
||||
|
||||
Reference in New Issue
Block a user