Restore find panel hight

This commit is contained in:
1024jp 2022-12-27 07:17:16 +09:00
parent 06a64b0f0c
commit 1475eca9fb
2 changed files with 8 additions and 2 deletions

View File

@ -10,6 +10,11 @@ Change Log
- [non-AppStore ver.] Update Sparkle from 2.3.0 to 2.3.1.
### Fixes
- Fix an issue that the Find window expanded unnecessarily in some specific conditions.
4.4.3 (546)
--------------------------

View File

@ -52,10 +52,11 @@ final class FindPanelContentViewController: NSSplitViewController, TextFinderDel
}
override func viewDidDisappear() {
override func viewWillAppear() {
super.viewDidDisappear()
super.viewWillAppear()
// make sure the result view is closed
self.setResultShown(false, animate: false)
}