From 19f1d05854d4af46fbecad7b3c9432848a3aa989 Mon Sep 17 00:00:00 2001 From: Guido Cella Date: Sat, 28 Dec 2024 14:06:30 +0100 Subject: [PATCH] console.lua: complete clipboard/text --- player/lua/console.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/player/lua/console.lua b/player/lua/console.lua index 9d92e2ab62df6..b932fa6ff578f 100644 --- a/player/lua/console.lua +++ b/player/lua/console.lua @@ -1180,6 +1180,10 @@ local function property_list() properties[#properties + 1] = 'current-tracks/' .. sub_property end + for _, sub_property in pairs({'text'}) do + properties[#properties + 1] = 'clipboard/' .. sub_property + end + return properties end