Skip to content

Commit

Permalink
Fix cursor color for "default" colorscheme (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
daa84 committed May 11, 2018
1 parent c56c945 commit 57f22b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl ColorModel {
.cursor()
.bg
.clone()
.unwrap_or_else(|| self.bg_color.clone())
.unwrap_or_else(|| self.fg_color.clone())
}
}

Expand Down

0 comments on commit 57f22b7

Please sign in to comment.