Skip to content

Commit

Permalink
accept gh bot suggestion
Browse files Browse the repository at this point in the history
I'll take this opportunity to squash in a minor name change

Co-Authored-By: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Kilvoctu and github-actions[bot] committed Feb 6, 2025
1 parent 246ea22 commit ce0d758
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/auto_pickup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,9 @@ void user_interface::show()
locx += shortcut_print( w_header, point( locx, 1 ),
get_option<bool>( "AUTO_PICKUP" ) ? c_light_green : c_light_red, c_white,
get_option<bool>( "AUTO_PICKUP" ) ? _( "True" ) : _( "False" ) );
std::string desc_3 = string_format( " %s ", ctxt.get_desc( "SWITCH_AUTO_PICKUP_OPTION", _( "Switch" ) ) );
fold_and_print( w_header, point( locx, 1 ), 0, c_white, desc_3 );
std::string desc = string_format( " %s ", ctxt.get_desc( "SWITCH_AUTO_PICKUP_OPTION",
_( "Switch" ) ) );
fold_and_print( w_header, point( locx, 1 ), 0, c_white, desc );

wnoutrefresh( w_header );

Expand Down

0 comments on commit ce0d758

Please sign in to comment.