https://bugs.kde.org/show_bug.cgi?id=392840
--- Comment #2 from LinG <lingtj...@hotmail.com> --- just javascript, everything works fine when I only use the print() method once. But when I start to use the print() method multiple times in quick succession then it won't print() some of the print() methods. When I use the "plasma" option to execute the script it will print both but when I use the "kwin" option it will skip some print() statements. It seems to depend on how long kwin is busy with executing the commands between the consecutive print statements. for example, if I put a long loop between the two print() statements then both will execute, like this example: print('hi'); var a = 0; for (var i = 0 ; i < 10000000; i++) { a += i; } print('hihi'); but doing only: print('hi'); print('hihi'); seems to be too fast and kwin will not print the second statement to console. -- You are receiving this mail because: You are watching all bug changes.