File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -551,7 +551,7 @@ impl App {
551
551
self . push_popup . push ( branch, force) ?;
552
552
flags. insert ( NeedsUpdate :: ALL )
553
553
}
554
- InternalEvent :: Fetch ( branch) => {
554
+ InternalEvent :: Pull ( branch) => {
555
555
self . fetch_popup . fetch ( branch) ?;
556
556
flags. insert ( NeedsUpdate :: ALL )
557
557
}
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ pub enum InternalEvent {
63
63
///
64
64
Push ( String , bool ) ,
65
65
///
66
- Fetch ( String ) ,
66
+ Pull ( String ) ,
67
67
}
68
68
69
69
///
Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ impl Status {
418
418
if let Some ( branch) = self . git_branch_name . last ( ) {
419
419
self . queue
420
420
. borrow_mut ( )
421
- . push_back ( InternalEvent :: Fetch ( branch) ) ;
421
+ . push_back ( InternalEvent :: Pull ( branch) ) ;
422
422
}
423
423
}
424
424
You can’t perform that action at this time.
0 commit comments