Skip to content

Commit a3e62ce

Browse files
author
Fabian Stoehr
committed
chore: resolve mr conflicts
1 parent bcfbef1 commit a3e62ce

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/WindowThumbnailSettings.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const ThumbnailOption = styled(MenuItem, { name: 'WindowThumbnailSettings', slot
2525
backgroundColor: `${(theme.vars || theme).palette.action.focus} !important`,
2626
},
2727
color: selected ? theme.palette.secondary.main : undefined,
28+
display: 'inline-flex',
2829
},
2930
}));
3031

src/components/WindowTopMenu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ export function WindowTopMenu({
4848
open={open}
4949
role="menu"
5050
>
51-
<WindowViewSettings windowId={windowId} handleClose={() => handleClose(anchorEl)} />
51+
<WindowViewSettings windowId={windowId} handleClose={handleClose} />
5252
{showThumbnailNavigationSettings
53-
&& <WindowThumbnailSettings windowId={windowId} handleClose={() => handleClose(anchorEl)} />}
53+
&& <WindowThumbnailSettings windowId={windowId} handleClose={handleClose} />}
5454
<PluginHookWithHeader {...pluginProps} />
5555
</Popover>
5656
);

0 commit comments

Comments
 (0)