mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
fix: File selector should jump back and highlight unstaged files (#2499)
Co-authored-by: extrawurst <mail@rusticorn.com>
This commit is contained in:
parent
232ad89a4d
commit
50c6562492
2 changed files with 4 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Changed
|
||||
* After commit: jump back to unstaged area [[@tommady](https://github.com/tommady)] ([#2476](https://github.com/extrawurst/gitui/issues/2476))
|
||||
|
||||
## [0.27.0] - 2024-01-14
|
||||
|
||||
**new: manage remotes**
|
||||
|
|
|
|||
|
|
@ -218,6 +218,7 @@ impl CommitPopup {
|
|||
|
||||
self.hide();
|
||||
self.queue.push(InternalEvent::Update(NeedsUpdate::ALL));
|
||||
self.queue.push(InternalEvent::StatusLastFileMoved);
|
||||
self.input.clear();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue