Skip to content

Commit

Permalink
chore(update): disable all radio button
Browse files Browse the repository at this point in the history
There is currently a bug with the All radio button in what is being displayed as an acceptable key match.

Remove to clean up UI and allow user to to understand each type of semi-tone map.
  • Loading branch information
geeves committed Sep 8, 2021
1 parent 13fc0e3 commit 0aa57f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script type="text/javascript" src="./dist/cw.js"></script>
<style>
footer {
display:flex;
width: 100%;
font-family: "Roboto Light";
font-size: 10px;
justify-content:center;
align-items:center;
}
</style>
</head>
<body>
<div id="main">

</div>
<footer>please report bugs here: <a href="https://github.com/geeves/camelot-wheel">https://github.com/geeves/camelot-wheel</a></footer>
</body>
</html>
2 changes: 1 addition & 1 deletion src/components/CamelotWheel.js
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ class CamelotWheel extends React.Component {
<FormControlLabel value={KeyState.SEMITONE} control={<Radio/>} label="Semi-tone"/>
<FormControlLabel value={KeyState.DOUBLE_SEMITONE} control={<Radio/>} label="Double Semi-tone"/>
<FormControlLabel value={KeyState.DIAGONAL} control={<Radio/>} label="Diagonal"/>
<FormControlLabel value={KeyState.ALL} control={<Radio/>} label="All"/>
{/*<FormControlLabel value={KeyState.ALL} control={<Radio/>} label="All"/>*/}
</RadioGroup>
</Grid>
</Grid>
Expand Down

0 comments on commit 0aa57f0

Please sign in to comment.