Add tooltip delay for expand/collapse of player image
This commit is contained in:
parent
cf904b5d51
commit
624b1bb94d
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ export const LeftControls = () => {
|
||||||
radius={50}
|
radius={50}
|
||||||
size="xs"
|
size="xs"
|
||||||
sx={{ position: 'absolute', right: 2, top: 2 }}
|
sx={{ position: 'absolute', right: 2, top: 2 }}
|
||||||
tooltip={{ label: 'Expand' }}
|
tooltip={{ label: 'Expand', openDelay: 500 }}
|
||||||
variant="default"
|
variant="default"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
|
@ -363,7 +363,7 @@ export const Sidebar = () => {
|
||||||
radius={100}
|
radius={100}
|
||||||
size="sm"
|
size="sm"
|
||||||
sx={{ position: 'absolute', right: 5, top: 5 }}
|
sx={{ position: 'absolute', right: 5, top: 5 }}
|
||||||
tooltip={{ label: 'Collapse' }}
|
tooltip={{ label: 'Collapse', openDelay: 500 }}
|
||||||
variant="default"
|
variant="default"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
Reference in a new issue