mirror of
https://github.com/extrawurst/gitui.git
synced 2025-01-01 13:33:08 +03:00
rename
This commit is contained in:
parent
bd54b47d19
commit
97f88a2f2f
@ -551,7 +551,7 @@ impl App {
|
||||
self.push_popup.push(branch, force)?;
|
||||
flags.insert(NeedsUpdate::ALL)
|
||||
}
|
||||
InternalEvent::Fetch(branch) => {
|
||||
InternalEvent::Pull(branch) => {
|
||||
self.fetch_popup.fetch(branch)?;
|
||||
flags.insert(NeedsUpdate::ALL)
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ pub enum InternalEvent {
|
||||
///
|
||||
Push(String, bool),
|
||||
///
|
||||
Fetch(String),
|
||||
Pull(String),
|
||||
}
|
||||
|
||||
///
|
||||
|
@ -418,7 +418,7 @@ impl Status {
|
||||
if let Some(branch) = self.git_branch_name.last() {
|
||||
self.queue
|
||||
.borrow_mut()
|
||||
.push_back(InternalEvent::Fetch(branch));
|
||||
.push_back(InternalEvent::Pull(branch));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user