diff --git a/src/Slider.tsx b/src/Slider.tsx index aa9309e7a..a5eab56a1 100644 --- a/src/Slider.tsx +++ b/src/Slider.tsx @@ -8,6 +8,7 @@ Please see LICENSE in the repository root for full details. import { FC, useCallback } from "react"; import { Root, Track, Range, Thumb } from "@radix-ui/react-slider"; import classNames from "classnames"; +import { Tooltip } from "@vector-im/compound-web"; import styles from "./Slider.module.css"; @@ -66,7 +67,10 @@ export const Slider: FC = ({ - + {/* Note: This is expected not to be visible on mobile.*/} + + + ); }; diff --git a/src/settings/settings.ts b/src/settings/settings.ts index f2f7980bb..b2da16744 100644 --- a/src/settings/settings.ts +++ b/src/settings/settings.ts @@ -102,7 +102,7 @@ export const playReactionsSound = new Setting( export const soundEffectVolumeSetting = new Setting( "sound-effect-volume", - 1, + 0.5, ); export const alwaysShowSelf = new Setting("always-show-self", true);