Skip to content

Commit

Permalink
Merge pull request #37259 from davidpwbrown/flicker_fix
Browse files Browse the repository at this point in the history
Change curses refresh rate in main menu to stop flickering
  • Loading branch information
ZhilkinSerg authored Jan 20, 2020
2 parents b8e26b2 + c55f8f9 commit f8e2ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ std::vector<std::string> main_menu::load_file( const std::string &path,

std::string main_menu::handle_input_timeout( input_context &ctxt )
{
std::string action = ctxt.handle_input( 125 );
std::string action = ctxt.handle_input( 1000 );

if( action == "TIMEOUT" ) {
init_windows();
Expand Down

0 comments on commit f8e2ed0

Please sign in to comment.