Skip to content

Commit 489b7f2

Browse files
committed
[LVGL] Wrong native action function name in actions.h #609
1 parent 27245b9 commit 489b7f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/eez-studio-shared/string.ts

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export function underscore(string: string | undefined): string {
5252
string[i - 1] <= "Z" &&
5353
(i == string.length - 1 ||
5454
(string[i + 1] >= "A" && string[i + 1] <= "Z") ||
55+
(string[i + 1] >= "0" && string[i + 1] <= "9") ||
5556
string[i + 1] == " " ||
5657
string[i + 1] == "." ||
5758
string[i + 1] == "_")

0 commit comments

Comments
 (0)