Skip to content

Commit

Permalink
Changed hide tree key to T, matching documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
acaudwell committed Jul 28, 2016
1 parent b950141 commit 9ef7fdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.44:
* Fixed crash when taking a screenshot with an odd resolution.
* Fixed type deduction compilation error with newer versions of GCC.
* Documentation improvements.

0.43:
* Updated boost autoconf macros to fix multi-arch detection.
Expand Down
4 changes: 2 additions & 2 deletions src/gource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -696,11 +696,11 @@ void Gource::keyPress(SDL_KeyboardEvent *e) {
idle_time = gGourceSettings.auto_skip_seconds;
}

if (e->keysym.sym == SDLK_t) {
if (e->keysym.sym == SDLK_y) {
gGourceQuadTreeDebug = !gGourceQuadTreeDebug;
}

if (e->keysym.sym == SDLK_y) {
if (e->keysym.sym == SDLK_t) {
gGourceSettings.hide_tree = !gGourceSettings.hide_tree;
}

Expand Down

0 comments on commit 9ef7fdb

Please sign in to comment.