@@ -367,37 +367,37 @@ pub fn rename_branch_popup_msg(
367367pub fn sort_branch_by_name_msg ( selected : bool ) -> String {
368368 format ! (
369369 "[{}] branch name (a -> z)" ,
370- if selected { "x " } else { " " }
370+ if selected { "X " } else { " " }
371371 )
372372}
373373pub fn sort_branch_by_name_rev_msg ( selected : bool ) -> String {
374374 format ! (
375375 "[{}] branch name (z -> a)" ,
376- if selected { "x " } else { " " }
376+ if selected { "X " } else { " " }
377377 )
378378}
379379pub fn sort_branch_by_time_msg ( selected : bool ) -> String {
380380 format ! (
381381 "[{}] last commit time (new -> old)" ,
382- if selected { "x " } else { " " }
382+ if selected { "X " } else { " " }
383383 )
384384}
385385pub fn sort_branch_by_time_rev_msg ( selected : bool ) -> String {
386386 format ! (
387387 "[{}] last commit time (old -> new)" ,
388- if selected { "x " } else { " " }
388+ if selected { "X " } else { " " }
389389 )
390390}
391391pub fn sort_branch_by_author_msg ( selected : bool ) -> String {
392392 format ! (
393393 "[{}] last commit author (a -> z)" ,
394- if selected { "x " } else { " " }
394+ if selected { "X " } else { " " }
395395 )
396396}
397397pub fn sort_branch_by_author_rev_msg ( selected : bool ) -> String {
398398 format ! (
399399 "[{}] last commit author (z -> a)" ,
400- if selected { "x " } else { " " }
400+ if selected { "X " } else { " " }
401401 )
402402}
403403
0 commit comments