File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ impl CommitList {
230
230
// marker
231
231
if let Some ( marked) = marked {
232
232
txt. push ( Span :: styled (
233
- Cow :: from ( if marked { "X " } else { " " } ) ,
233
+ Cow :: from ( if marked { "\u{2713} " } else { " " } ) ,
234
234
theme. log_marker ( selected) ,
235
235
) ) ;
236
236
txt. push ( splitter. clone ( ) ) ;
Original file line number Diff line number Diff line change @@ -232,7 +232,9 @@ impl Theme {
232
232
}
233
233
234
234
pub fn log_marker ( & self , selected : bool ) -> Style {
235
- let mut style = Style :: default ( ) . add_modifier ( Modifier :: BOLD ) ;
235
+ let mut style = Style :: default ( )
236
+ . fg ( self . commit_author )
237
+ . add_modifier ( Modifier :: BOLD ) ;
236
238
237
239
style = self . apply_select ( style, selected) ;
238
240
@@ -245,6 +247,7 @@ impl Theme {
245
247
selected,
246
248
)
247
249
}
250
+
248
251
pub fn commit_author ( & self , selected : bool ) -> Style {
249
252
self . apply_select (
250
253
Style :: default ( ) . fg ( self . commit_author ) ,
You can’t perform that action at this time.
0 commit comments