From 1d1860842ef5e3d7b3e5d27f466dde36392b9625 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 17 Oct 2022 03:58:38 -0400 Subject: [PATCH] Improve the tooltips on the call lobby join button (#9428) 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 2a795e4bf1..ea5d3c1e79 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} /> ; };