diff options
| author | ailurux <ailuruxx@gmail.com> | 2024-09-17 14:12:17 +1000 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2024-09-17 14:12:17 +1000 |
| commit | 6c1757a1766180497dc5196193c9e81417074ba7 (patch) | |
| tree | 9c3e5b9b9395956f9f63e6b52b6e388b7f6519e6 /lua | |
| parent | c4ec089a90ae4a61a50a03cf8338d63488edfd62 (diff) | |
| parent | 7d1266404d8e876ba909d101eb316868036b423c (diff) | |
| download | tangara-fw-6c1757a1766180497dc5196193c9e81417074ba7.tar.gz | |
Merge branch 'main' into daniel/persistent-positions
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/main_menu.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/main_menu.lua b/lua/main_menu.lua index 8c5c227c..164ba650 100644 --- a/lua/main_menu.lua +++ b/lua/main_menu.lua @@ -155,6 +155,7 @@ return widgets.MenuScreen:new { }) end) files_btn:Image { src = img.files } + widgets.Description(files_btn, "File browser") theme.set_subject(files_btn, "menu_icon") local settings_btn = bottom_bar:Button {} @@ -162,6 +163,7 @@ return widgets.MenuScreen:new { backstack.push(require("settings"):new()) end) settings_btn:Image { src = img.settings } + widgets.Description(settings_btn, "Settings") theme.set_subject(settings_btn, "menu_icon") end, } |
