fix(ags media-player): wrap in Box to have correct margin
This commit is contained in:
parent
28881bd2dd
commit
812c1b7a52
1 changed files with 43 additions and 41 deletions
|
@ -83,8 +83,9 @@ const PlayerBox = player => mpris.CoverArt(player, {
|
|||
],
|
||||
});
|
||||
|
||||
export default () => PlayerGesture({
|
||||
export default () => Box({
|
||||
className: 'media',
|
||||
child: PlayerGesture({
|
||||
properties: [
|
||||
['players', new Map()],
|
||||
['setup', false],
|
||||
|
@ -134,4 +135,5 @@ export default () => PlayerGesture({
|
|||
overlay.reorder_overlay(overlay._selected, -1);
|
||||
}, 'player-closed'],
|
||||
],
|
||||
})
|
||||
}),
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue