fixed calculator infobox showing up when it shouldn't on decimals

This commit is contained in:
frosty
2026-02-26 09:25:44 -05:00
parent 7ce0283276
commit 26e3403e03

View File

@@ -49,7 +49,7 @@ static int is_calculator_query(const char *query) {
}
}
return has_digit && (has_operator || strchr(query, '.'));
return has_digit && has_operator;
}
static void *calc_thread_func(void *arg) {