From 32ead3f93a0ba83bfa64da1afcb034975d69a2c3 Mon Sep 17 00:00:00 2001 From: phg Date: Mon, 18 Aug 2025 16:04:35 +0200 Subject: [PATCH] Update descriptions for DNS refresh and update key bindings --- src/hosts/tui/keybindings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hosts/tui/keybindings.py b/src/hosts/tui/keybindings.py index 167c61b..a8d5bbc 100644 --- a/src/hosts/tui/keybindings.py +++ b/src/hosts/tui/keybindings.py @@ -44,8 +44,8 @@ HOSTS_MANAGER_BINDINGS = [ Binding("shift+down", "move_entry_down", "Move entry down", show=False), Binding("ctrl+z", "undo", "Undo", show=False, id="left:undo"), Binding("ctrl+y", "redo", "Redo", show=False, id="left:redo"), - Binding("R", "refresh_dns", "Refresh DNS", show=False, id="left:refresh_dns"), - Binding("r", "update_single_dns", "Update DNS", show=False, id="left:update_single_dns"), + Binding("R", "refresh_dns", "Update all DNS based Entries", show=False, id="left:refresh_dns"), + Binding("r", "update_single_dns", "Update selected DNS based Entry", show=False, id="left:update_single_dns"), Binding("escape", "exit_edit_entry", "Exit edit mode", show=False), Binding("tab", "next_field", "Next field", show=False), Binding("shift+tab", "prev_field", "Previous field", show=False),