diff --git a/src/plugins/mediaPlaybackSpeed/index.tsx b/src/plugins/mediaPlaybackSpeed/index.tsx index aff0dc8d5..600983ff4 100644 --- a/src/plugins/mediaPlaybackSpeed/index.tsx +++ b/src/plugins/mediaPlaybackSpeed/index.tsx @@ -10,7 +10,7 @@ import { classNameFactory } from "@api/Styles"; import { makeRange } from "@components/PluginSettings/components"; import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; -import { ContextMenuApi, FluxDispatcher, Menu, React } from "@webpack/common"; +import { ContextMenuApi, FluxDispatcher, Menu, React, Tooltip } from "@webpack/common"; import { RefObject } from "react"; import SpeedIcon from "./components/SpeedIcon"; @@ -33,31 +33,38 @@ export default definePlugin({ }; return ( - + + {({ onMouseEnter, onMouseLeave }) => ( + + )} + ); },