From 7ce43530b1bba81cec254b10f24ea59cec3d2101 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 1 Jul 2024 23:57:02 +0300 Subject: [PATCH] fix - reg - Fixed help screen messup --- We've fixed a regression where we would print two keybindings in the same line of the help infobox for the selection and the multi-selection styles. --- Type: fix Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- Terminaux/Inputs/Styles/Selection/SelectionMultipleStyle.cs | 1 + Terminaux/Inputs/Styles/Selection/SelectionStyle.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Terminaux/Inputs/Styles/Selection/SelectionMultipleStyle.cs b/Terminaux/Inputs/Styles/Selection/SelectionMultipleStyle.cs index 390b34aa..06171258 100644 --- a/Terminaux/Inputs/Styles/Selection/SelectionMultipleStyle.cs +++ b/Terminaux/Inputs/Styles/Selection/SelectionMultipleStyle.cs @@ -488,6 +488,7 @@ [PAGE DOWN] | Goes to the next page [A] | Selects all the elements [F] | Searches for an element [C] | Shows or hides the page count + """); if (isExtendable) bindings.AppendLine("[TAB] | Shows more info in an infobox"); diff --git a/Terminaux/Inputs/Styles/Selection/SelectionStyle.cs b/Terminaux/Inputs/Styles/Selection/SelectionStyle.cs index fc2be5a2..f5adb7f2 100644 --- a/Terminaux/Inputs/Styles/Selection/SelectionStyle.cs +++ b/Terminaux/Inputs/Styles/Selection/SelectionStyle.cs @@ -463,6 +463,7 @@ [PAGE DOWN] | Goes to the next page [ENTER] | Select a choice [F] | Searches for an element [C] | Shows or hides the page count + """); if (isExtendable) bindings.AppendLine("[TAB] | Shows more info in an infobox");