Skip to content

Commit

Permalink
fix: a taskbar related styling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ridvanaltun committed Mar 24, 2022
1 parent 2f6a561 commit 010b56d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@
});

ipcRenderer.on("SET_ARROW_VISIBILITY", (_, enabled) => {
if (enabled) document.getElementById('arrow').style.display = "block"
else document.getElementById('arrow').style.display = "table"
if (enabled) document.getElementById('arrow').style.visibility = "visible"
else document.getElementById('arrow').style.visibility = "hidden"
});
</script>
</body>
Expand Down

0 comments on commit 010b56d

Please sign in to comment.