From ea2a411a2e2d1dc5baf37805b1a8b0a5291cf4a2 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sun, 8 Jan 2023 13:34:43 +0100 Subject: [PATCH] Improve File Swap hint texts, also reorders them. --- Penumbra/UI/Classes/ModEditWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Penumbra/UI/Classes/ModEditWindow.cs b/Penumbra/UI/Classes/ModEditWindow.cs index fe6ba962..e1fecd92 100644 --- a/Penumbra/UI/Classes/ModEditWindow.cs +++ b/Penumbra/UI/Classes/ModEditWindow.cs @@ -526,10 +526,10 @@ public partial class ModEditWindow : Window, IDisposable ImGui.TableNextColumn(); ImGui.SetNextItemWidth( -1 ); - ImGui.InputTextWithHint( "##swapKey", "New Swap Source...", ref _newSwapKey, Utf8GamePath.MaxGamePathLength ); + ImGui.InputTextWithHint( "##swapKey", "Load this file...", ref _newSwapValue, Utf8GamePath.MaxGamePathLength ); ImGui.TableNextColumn(); ImGui.SetNextItemWidth( -1 ); - ImGui.InputTextWithHint( "##swapValue", "New Swap Target...", ref _newSwapValue, Utf8GamePath.MaxGamePathLength ); + ImGui.InputTextWithHint( "##swapValue", "... instead of this file.", ref _newSwapKey, Utf8GamePath.MaxGamePathLength ); } public ModEditWindow()