You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes. It's not crashing now. But sometimes it skips states.
For example. I count to infinity with a timed interval. On live view the the source sometimes becomes blank. Skips number or two:
import time
cnt = 0
while True:
time.sleep(1)
cnt = cnt + 1
f = open("sample.txt", "w")
f.write(str(cnt))
f.close()
File change events were causing double updates of the CATextLayer, one of which was a nil string. Sometimes the layout render would hit during the blank phase. Removed the nil update part and it seems better behaved now
Hi,
CocoaSplit 2.1.12 crashes when displaying contents of a file being rewritten by an external process.
To reproduce:
python2
CocoaSplit 2.1.12 should crash.
Rewriting text files by an external process is useful either for chat or donations.
I tried to do the same on OBS, but it doesn't crash.
Attached crash report and console messages.
crash_write_to_file.txt
console_write_to_file.txt
The text was updated successfully, but these errors were encountered: