File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ OPTION_INFO(DEFINE_OPTION_EXTERNS)
110
110
111
111
#define DATE_COLUMN_OPTIONS (_ ) \
112
112
_(display, enum date, VIEW_NO_FLAGS) \
113
- _(use_author, bool, VIEW_NO_FLAGS ) \
113
+ _(use_author, bool, VIEW_BLAME_LIKE | VIEW_LOG_LIKE ) \
114
114
_(local, bool, VIEW_NO_FLAGS) \
115
115
_(format, const char *, VIEW_NO_FLAGS) \
116
116
_(width, int, VIEW_NO_FLAGS) \
Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ blame_select(struct view *view, struct line *line)
502
502
static struct view_ops blame_ops = {
503
503
"line" ,
504
504
argv_env .commit ,
505
- VIEW_SEND_CHILD_ENTER | VIEW_BLAME_LIKE ,
505
+ VIEW_SEND_CHILD_ENTER | VIEW_BLAME_LIKE | VIEW_REFRESH ,
506
506
sizeof (struct blame_state ),
507
507
blame_open ,
508
508
blame_read ,
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ refs_select(struct view *view, struct line *line)
256
256
static struct view_ops refs_ops = {
257
257
"reference" ,
258
258
argv_env .head ,
259
- VIEW_REFRESH | VIEW_SORTABLE ,
259
+ VIEW_REFRESH | VIEW_SORTABLE | VIEW_BLAME_LIKE ,
260
260
0 ,
261
261
refs_open ,
262
262
refs_read ,
Original file line number Diff line number Diff line change @@ -488,7 +488,7 @@ tree_open(struct view *view, enum open_flags flags)
488
488
static struct view_ops tree_ops = {
489
489
"file" ,
490
490
argv_env .commit ,
491
- VIEW_SEND_CHILD_ENTER | VIEW_SORTABLE ,
491
+ VIEW_SEND_CHILD_ENTER | VIEW_SORTABLE | VIEW_BLAME_LIKE | VIEW_REFRESH ,
492
492
sizeof (struct tree_state ),
493
493
tree_open ,
494
494
tree_read ,
You can’t perform that action at this time.
0 commit comments