From 98da0f611f7e7bc12e572b3ae078dbe67bb2ea4a Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Mon, 17 Oct 2022 01:27:24 -0400 Subject: [PATCH] Improve the tooltips on the call lobby join button Currently they display a redundant 'Join' tooltip on hover, and place the tooltip on the left. This removes the redundant tooltip and places the tooltip below the button, which looks a bit more balanced. --- src/components/views/voip/CallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 2a795e4bf1b..ea5d3c1e79d 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -246,9 +246,9 @@ export const Lobby: FC = ({ room, joinCallButtonDisabled, joinCallBu kind="primary" disabled={connecting || joinCallButtonDisabled} onClick={onConnectClick} - title={_t("Join")} label={_t("Join")} tooltip={connecting ? _t("Connecting") : joinCallButtonTooltip} + alignment={Alignment.Bottom} /> ; };