Open Caraxi opened 3 years ago
Any updates?
Maybe I am misinterpreting the code, but what is the point of the extra or in cancelled = cancelled || user_cancelled();
? Could you not simply do cancelled = user_cancelled();
? Or better yet something like the following?
if (user_cancelled()) {
cancelled = true;
break;
}
I don't remember why I did it like that
Cancel search when the cancel button is pressed.