aboutsummaryrefslogtreecommitdiffhomepage
path: root/wheelwork.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'wheelwork.lisp')
-rw-r--r--wheelwork.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/wheelwork.lisp b/wheelwork.lisp
index fb4e5bb..3a39dd2 100644
--- a/wheelwork.lisp
+++ b/wheelwork.lisp
@@ -393,7 +393,9 @@ necessary."
Additionally, if the APPLICATION's REFOCUS-ON-MOUSEDOWN-P is T, try to
give focus to whatever was clicked."
(destructuring-bind (x y) (screen-to-world wx wy)
- (when-let (target (unit-under app x y))
+ (let ((target
+ (or (unit-under app x y) ; if no unit is under the mouse,
+ app))) ; then target the app itself
(when (refocus-on-mousedown-p app)
(refocus-on target))
(when-let (handler (get-handler-for target 'mousedown))