From a8fe63ee93cd9933e73f396d7580e3b2eb88400c Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 30 Nov 2025 20:34:00 +0100 Subject: [PATCH] impr: Better name and icons for recent files --- plugins/builtin/romfs/lang/en_US.json | 2 +- plugins/builtin/source/content/recent.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/builtin/romfs/lang/en_US.json b/plugins/builtin/romfs/lang/en_US.json index 9574059d8..9eaa100d3 100644 --- a/plugins/builtin/romfs/lang/en_US.json +++ b/plugins/builtin/romfs/lang/en_US.json @@ -1213,7 +1213,7 @@ "hex.builtin.welcome.start.open_file": "Open File", "hex.builtin.welcome.start.open_other": "Other Data Sources", "hex.builtin.welcome.start.open_project": "Open Project", - "hex.builtin.welcome.start.recent": "Recent Data Sources", + "hex.builtin.welcome.start.recent": "Recently Opened", "hex.builtin.welcome.start.recent.auto_backups": "Auto Backups", "hex.builtin.welcome.start.recent.auto_backups.backup": "Backup from {:%Y-%m-%d %H:%M:%S}", "hex.builtin.welcome.tip_of_the_day": "Tip of the Day", diff --git a/plugins/builtin/source/content/recent.cpp b/plugins/builtin/source/content/recent.cpp index 93d1c14a3..4eef85078 100644 --- a/plugins/builtin/source/content/recent.cpp +++ b/plugins/builtin/source/content/recent.cpp @@ -314,7 +314,7 @@ namespace hex::plugin::builtin::recent { const char* icon; if (isProject) { - icon = ICON_VS_PROJECT; + icon = ICON_VS_NOTEBOOK; } else { icon = ICON_VS_FILE_BINARY; }