summaryrefslogtreecommitdiff
path: root/plugingui/button.cc
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2017-01-02 14:26:59 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2017-01-02 14:26:59 +0100
commita7710c4105fd469c3eb8fa890e9aae6a4da27a69 (patch)
treefc10396adf497c07d57b3625516c5713acf2f745 /plugingui/button.cc
parenta781deee74a8a5e1eb9429229974d4f70137ae09 (diff)
Fix formatting issues.
Diffstat (limited to 'plugingui/button.cc')
-rw-r--r--plugingui/button.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugingui/button.cc b/plugingui/button.cc
index 7c1e005..29d3deb 100644
--- a/plugingui/button.cc
+++ b/plugingui/button.cc
@@ -47,7 +47,8 @@ Button::~Button()
void Button::buttonEvent(ButtonEvent* buttonEvent)
{
// Ignore everything except left clicks.
- if (buttonEvent->button != MouseButton::left) {
+ if(buttonEvent->button != MouseButton::left)
+ {
return;
}