diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-05-23 18:49:44 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-05-23 18:49:44 (GMT) |
| commit | f41ab864ef837c169d3c98da1c98fceb3af1ecc8 (patch) | |
| tree | 84754b18cb2ca5a554676cd5f1d14080d453bfe2 /src/game/GameView.cpp | |
| parent | f1953603c057813cf4093d73b6ecce96ae6c372b (diff) | |
| download | powder-f41ab864ef837c169d3c98da1c98fceb3af1ecc8.zip powder-f41ab864ef837c169d3c98da1c98fceb3af1ecc8.tar.gz | |
Fix slight issues when clicking on menu section buttons and missing isMouseInside in MouseEnter action for buttons
Diffstat (limited to 'src/game/GameView.cpp')
| -rw-r--r-- | src/game/GameView.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index ed8e6fe..9d97a33 100644 --- a/src/game/GameView.cpp +++ b/src/game/GameView.cpp @@ -242,6 +242,10 @@ public: { v->c->SetActiveMenu(menu); } + void ActionCallback(ui::Button * sender) + { + MouseEnterCallback(sender); + } }; class GameView::ToolAction: public ui::ButtonAction |
