From 08b84199bd438f8275ed9fdc666dcbe975b1b7e3 Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Tue, 3 Oct 2023 19:28:37 +0900 Subject: [PATCH] chore: rename SolverUI.cs -> SolverWindow.cs to preserve editor window location after restarting UnityEditor (#42) * chore: rename SolverUI.cs -> SolverWindow.cs to preserve editor location after restarting UnityEditor * docs(changelog): Posision of Plugin Ordering Window are now preserved after restarting UnityEditor * docs(changelog): Posision of Plugin sequence display are now preserved after restarting UnityEditor * Update CHANGELOG.md --------- Co-authored-by: bd_ --- CHANGELOG.md | 1 + Editor/UI/{SolverUI.cs => SolverWindow.cs} | 0 Editor/UI/{SolverUI.cs.meta => SolverWindow.cs.meta} | 0 3 files changed, 1 insertion(+) rename Editor/UI/{SolverUI.cs => SolverWindow.cs} (100%) rename Editor/UI/{SolverUI.cs.meta => SolverWindow.cs.meta} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06b7beab..46887b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Time resolution on the plugin sequence display is milliseconds, not 0.01 ms (#43) ### Changed +- Position of the Plugin sequence display window is now preserved after restarting the Unity Editor (#42) ### Removed diff --git a/Editor/UI/SolverUI.cs b/Editor/UI/SolverWindow.cs similarity index 100% rename from Editor/UI/SolverUI.cs rename to Editor/UI/SolverWindow.cs diff --git a/Editor/UI/SolverUI.cs.meta b/Editor/UI/SolverWindow.cs.meta similarity index 100% rename from Editor/UI/SolverUI.cs.meta rename to Editor/UI/SolverWindow.cs.meta