aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorNicolas Bacca2004-01-19 20:34:54 +0000
committerNicolas Bacca2004-01-19 20:34:54 +0000
commit9f3515be30b43327521b097caf39e2d651d9cafc (patch)
tree6fba3c88c8eb7647c73fda86c255920031753442 /gui
parent923adce4562897a6df4f023622f1770d0eac4c15 (diff)
downloadscummvm-rg350-9f3515be30b43327521b097caf39e2d651d9cafc.tar.gz
scummvm-rg350-9f3515be30b43327521b097caf39e2d651d9cafc.tar.bz2
scummvm-rg350-9f3515be30b43327521b097caf39e2d651d9cafc.zip
Add comment for checkbox CE tweak
svn-id: r12522
Diffstat (limited to 'gui')
-rw-r--r--gui/widget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/widget.cpp b/gui/widget.cpp
index d05a6fd051..45f725a48f 100644
--- a/gui/widget.cpp
+++ b/gui/widget.cpp
@@ -170,6 +170,7 @@ void CheckboxWidget::handleMouseUp(int x, int y, int button, int clickCount) {
#ifndef _WIN32_WCE
if (isEnabled() && x >= 0 && x < _w && y >= 0 && y < _h) {
#else
+ // Limit the active zone on the checkbox for stylus users
if (isEnabled() && x >= 0 && x < 14 && y >= 0 && y < 14) {
#endif
toggleState();