Skip to content

Commit

Permalink
Release 2.0.104-b4
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonV committed Oct 5, 2024
1 parent 5d8e111 commit b102a24
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ledfx",
"version": "2.0.104-b3",
"version": "2.0.104-b4",
"description": "LedFx v2 - BladeMOD",
"author": "YeonV aka Blade",
"private": true,
Expand Down
3 changes: 2 additions & 1 deletion src/components/Bars/BarLeft.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ const useStyles = makeStyles(() => ({
drawerHeader: {
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center'
alignItems: 'center',
minHeight: '55px',
},
logo: {
position: 'relative',
Expand Down
2 changes: 1 addition & 1 deletion src/components/Bars/BarLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const LeftBar = () => {
border: theme.palette.secondary.main,
backgroundColor: isElectron()
? 'transparent'
: theme.palette.mode === 'light' ? 'transparent' : theme.palette.primary.main
: (theme.palette.mode === 'light' || theme.palette.primary.main === '#FFFFFF') ? 'transparent' : theme.palette.primary.main
}}
/>
</Box>
Expand Down
3 changes: 3 additions & 0 deletions src/components/Dialogs/SceneDialogs/EditSceneDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ const EditSceneDialog = () => {
output.send([0x92, currentBtnNumber, 99])
}, 100)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [open, features.scenemidi])

useEffect(() => {
Expand All @@ -277,6 +278,7 @@ const EditSceneDialog = () => {
lastButton.current = -1
setBlockMidiHandler(false)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [open, features.scenemidi, midiEvent])

const renderPresets = (
Expand Down Expand Up @@ -457,6 +459,7 @@ const EditSceneDialog = () => {
>
<AppBar
enableColorOnDark
color="secondary"
// className={classes.appBar}
>
<Toolbar>
Expand Down

0 comments on commit b102a24

Please sign in to comment.