From b17482cc923b6c602565fb660c09e6f67f3c3ade Mon Sep 17 00:00:00 2001 From: hermannm Date: Wed, 7 Jun 2023 10:28:01 +0200 Subject: [PATCH] shorten input control labels --- src/rendering/fullscreen.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rendering/fullscreen.rs b/src/rendering/fullscreen.rs index 407e3d7..aa8fcc6 100644 --- a/src/rendering/fullscreen.rs +++ b/src/rendering/fullscreen.rs @@ -20,8 +20,8 @@ use super::status_symbols::{get_status_symbols, StatusSymbol}; const INPUT_CONTROLS: [[&str; 2]; 6] = [ ["[enter]", "done"], - ["[space]", "stage change"], - ["[r]", "unstage change"], + ["[space]", "stage"], + ["[r]", "unstage"], ["[a]", "stage all"], ["[u]", "unstage all"], ["[c]", "copy path"],