tweaks: reshuffle some conditions, to have more balanced lines

master
Benno Schulenberg 2021-11-22 11:13:02 +01:00
parent 839d29be3f
commit addac49465
1 changed files with 3 additions and 3 deletions

View File

@ -193,9 +193,9 @@ void read_keys_from(WINDOW *win)
curs_set(1);
#ifndef NANO_TINY
if (currmenu == MMAIN && (spotlighted || ((ISSET(MINIBAR) || ISSET(ZERO) || LINES == 1) &&
lastmessage > HUSH &&
lastmessage != INFO && lastmessage < ALERT))) {
if (currmenu == MMAIN && (((ISSET(MINIBAR) || ISSET(ZERO) || LINES == 1) &&
lastmessage > HUSH && lastmessage < ALERT &&
lastmessage != INFO) || spotlighted)) {
timed = TRUE;
halfdelay(ISSET(QUICK_BLANK) ? 8 : 15);
disable_kb_interrupt();