Skip to content

Commit

Permalink
Merge pull request #384 from zsalch/next_blunderbar
Browse files Browse the repository at this point in the history
next: Display blunder bar in the winrate graph
  • Loading branch information
featurecat authored Nov 8, 2018
2 parents 73bcc82 + f40bc0e commit bcd4092
Show file tree
Hide file tree
Showing 4 changed files with 352 additions and 113 deletions.
6 changes: 5 additions & 1 deletion src/main/java/featurecat/lizzie/gui/Input.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ public void keyPressed(KeyEvent e) {
break;

case VK_W:
Lizzie.config.toggleShowWinrate();
if (controlIsPressed(e)) {
Lizzie.config.toggleLargeWinrate();
} else {
Lizzie.config.toggleShowWinrate();
}
break;

case VK_G:
Expand Down
Loading

0 comments on commit bcd4092

Please sign in to comment.