# HG changeset patch # User ib # Date 1393597820 0 # Node ID d66aef85ae3140790b8352ac5acd9911fbd72144 # Parent 9bc711c42ea6425f74c3cd0a902a426cf26aedfc Fix copy and paste error. This has happened in r36954. diff -r 9bc711c42ea6 -r d66aef85ae31 gui/app/app.c --- a/gui/app/app.c Fri Feb 28 14:20:52 2014 +0000 +++ b/gui/app/app.c Fri Feb 28 14:30:20 2014 +0000 @@ -252,6 +252,6 @@ for (i = 0; i <= guiApp.IndexOfPlaybarItems; i++) if (guiApp.playbarItems[i].message == event) - if (hasButton(guiApp.mainItems[i])) + if (hasButton(guiApp.playbarItems[i])) guiApp.playbarItems[i].pressed = state; }