> Richard Stingley wrote: > > Howdy, > > > > I have found some of my FLTK codes will crash when I enter control+v. This > > can be annoying when trying to paste data into input fields. Does anyone > > know why this is happening? I do not see any reference to control+v in the > > Programming Manual or mentioned in the forums. I use FLTK 1.1.6. Thanks > > for any assistance. > > Hmm, which platform? > > If linux, I know there have been some changes in the X API for > copy/paste > that may be tripping you up with such an old (8 years?) version of fltk. > I think 1.1.6 was active in 2004.
Thanks for the reply Greg. After learning from your message there wasn't a known issue I decided to dig a little further and found the source of the problem. All of the GUIs which had the problem had an implementation of our table widget in it and if you entered control+v outside of the table the table still try to process the paste command and crash because it didn't know the number of rows and columns in the table. Now, I exit out of the table class as soon as it realizes the paste is not in the table. Thanks for your help. Richard _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

