diff --git a/src/game.cpp b/src/game.cpp index 93361bff9b1cb..bffd0f45d37c7 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -7131,8 +7131,6 @@ void game::reset_item_list_state( const catacurses::window &window, int height, xpos += shortcut_print( window, point( xpos, ypos ), c_white, c_light_green, tokens[i] ) + gap_spaces; } - - refresh_all(); } void game::list_items_monsters() @@ -7174,7 +7172,6 @@ void game::list_items_monsters() } } - refresh_all(); if( ret == game::vmenu_ret::FIRE ) { avatar_action::fire( u, m, u.weapon ); } @@ -7184,7 +7181,7 @@ void game::list_items_monsters() game::vmenu_ret game::list_items( const std::vector &item_list ) { int iInfoHeight = std::min( 25, TERMY / 2 ); - const int width = 44; + const int width = 45; const int offsetX = TERMX - VIEW_OFFSET_X - width; catacurses::window w_items = catacurses::newwin( TERMY - 2 - iInfoHeight - VIEW_OFFSET_Y * 2,