Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix dialpad positioning (#7446)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBrandner committed Dec 23, 2021
1 parent 5096455 commit 38ba198
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/views/voip/CallView/CallViewButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import DialpadContextMenu from "../../context_menus/DialpadContextMenu";
import { Alignment } from "../../elements/Tooltip";
import {
alwaysAboveLeftOf,
alwaysAboveRightOf,
ChevronFace,
ContextMenuTooltipButton,
} from '../../../structures/ContextMenu';
Expand Down Expand Up @@ -175,7 +174,7 @@ export default class CallViewButtons extends React.Component<IProps, IState> {
let dialPad;
if (this.state.showDialpad) {
dialPad = <DialpadContextMenu
{...alwaysAboveRightOf(
{...alwaysAboveLeftOf(
this.dialpadButton.current.getBoundingClientRect(),
ChevronFace.None,
CONTEXT_MENU_VPADDING,
Expand Down

0 comments on commit 38ba198

Please sign in to comment.