From 3b4dacaee81ec55a1dccdb50584d45ca5bbe00ec Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 30 May 2022 15:36:53 -0700 Subject: regression: typing uppercase letters in text --- text.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'text.lua') diff --git a/text.lua b/text.lua index 87c8368..c4b9163 100644 --- a/text.lua +++ b/text.lua @@ -1109,7 +1109,7 @@ end function Text.textinput(t) if love.mouse.isDown('1') then return end - if App.modifier_down() then return end + if App.ctrl_down() or App.alt_down() or App.cmd_down() then return end local down = love.keyboard.isDown Text.insert_at_cursor(t) end -- cgit 1.4.1-2-gfad0 is.form.submit();'> mirror of ~rjarry's aerc fork - a pretty good email clientakspecs <akspecs@tilde.institute>
about summary refs log tree commit diff stats
path: root/widgets/exline.go
blob: ff18d13cce42564ec0309daa9db3f3ff4ef827ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56