in reply to Re^2: text delete hangs in Perl/Tk
in thread text delete hangs in Perl/Tk

Really old post but I had the exact same problem today... delete of large amount of data from Text box with loads of tags and it hangs forever. My solution was to first delete the tags, then delete the text - fixed the issue. Thanks for the clues guys! # delete contents $codevw->tagDelete('errs', 'lnums'); $codevw->delete('0.0', 'end');