From 366d806515a724d2ad46900de235e42349d181d0 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 7 Dec 2023 01:08:09 -0800 Subject: copy correct warning message Not really useful here, but other forks might make use of it. --- main.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.lua b/main.lua index cf76a19..82a8f2d 100644 --- a/main.lua +++ b/main.lua @@ -219,7 +219,7 @@ function App.keychord_press(chord, key) Skip_rest_of_key_events = nil if current_app_is_warning() then if chord == 'C-c' then - love.system.setClipboardText(Error_message) + love.system.setClipboardText(warning_message()) else clear_warning() Skip_rest_of_key_events = true @@ -367,3 +367,8 @@ function clear_warning() assert(type(Current_app) == 'table') Current_app = Current_app.next_app end + +function warning_message() + assert(type(Current_app) == 'table') + return Current_app.message +end -- cgit 1.4.1-2-gfad0