Skip to content

Commit

Permalink
fix: Fixed Menu Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkoelle committed May 19, 2021
1 parent 51b792f commit 0328cd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/containers/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ export default function TitleBar(props: TitleBarProps) {
},
...theme,
menu: {
palette: shouldUseDarkColors(settings.theme) ? 'dark' : 'light',
palette: shouldUseDarkColors(settings.general.theme)
? 'dark'
: 'light',
overlay: {
opacity: 0.0,
},
Expand Down

0 comments on commit 0328cd1

Please sign in to comment.