From ce79623231a71d23b32d0c4bbaef0adba673e9fc Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 23 Aug 2022 09:44:16 -0700 Subject: [PATCH] improve explanation for buttons --- button.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/button.lua b/button.lua index 66a2c00..4cafc86 100644 --- a/button.lua +++ b/button.lua @@ -1,4 +1,7 @@ --- simple immediate-mode buttons +-- Simple immediate-mode buttons with (currently) just an onpress1 handler for +-- the left button. +-- If the handler returns true, it'll prevent any further processing of the +-- event. Button_handlers = {}