From 581a943c426259b71666ada59cda629170aa1f32 Mon Sep 17 00:00:00 2001 From: poire-z Date: Sun, 1 Jan 2023 16:11:14 +0100 Subject: [PATCH] TextEditor: use a file symbol instead of numbers in history --- plugins/texteditor.koplugin/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/texteditor.koplugin/main.lua b/plugins/texteditor.koplugin/main.lua index 5ea1c1df1..bee254a15 100644 --- a/plugins/texteditor.koplugin/main.lua +++ b/plugins/texteditor.koplugin/main.lua @@ -240,7 +240,7 @@ Export text to QR code, that can be scanned, for example, by a phone.]]), local file_path = self.history[i] local directory, filename = util.splitFilePathName(file_path) -- luacheck: no unused table.insert(sub_item_table, { - text = T("%1. %2", i, BD.filename(filename)), + text = T("\u{f016} %1", BD.filename(filename)), -- file symbol keep_menu_open = true, callback = function(touchmenu_instance) self:setupWhenDoneFunc(touchmenu_instance)