Hi all

When I add a new row to the peak list table the entry is first listed with 
empty values - see row #7:
[cid:image001.png@01CFED4A.1F786360]

The error occurs because updateTableGUI() (l.523 in 
PeakListTablePopupMenu.java) is called before the manual peak picker has 
finished. A simple solution would be to call updateTableGUI() after the peak 
picking has finished, that is in ManualPickerTask.java. However I don't know 
how to call the function from this location. Another option would be to call 
updateTableGUI() in PeakListTablePopupMenu.java only when the manual peak 
picker has finished but with both solutions I need your help to implement it. 
Any suggestions?

A more ugly hack is to add something like the following to 
PeakListTablePopupMenu.java:
updateTableGUI();
Timer timer = new Timer();
timer.schedule(new TimerTask() { public void run() { updateTableGUI(); } }, 
500); //msecs
timer.schedule(new TimerTask() { public void run() { updateTableGUI(); } }, 
1000); //msecs

Best regards,
Thomas
____________________________

Thomas F. Dyrlund
Post Doctoral Researcher
Research, Systems Medicine

Steno Diabetes Center A/S
Niels Steensens Vej 2-4
DK-2820 Gentofte
Denmark
+45 3968 0800 (phone)
+45 3079 9290 (mobile)
t...@steno.dk

This e-mail (including any attachments) is intended for the addressee(s) stated 
above only and may contain confidential information protected by law. You are 
hereby notified that any unauthorized reading, disclosure, copying or 
distribution of this e-mail or use of information contained herein is strictly 
prohibited and may violate rights to proprietary information. If you are not an 
intended recipient, please return this e-mail to the sender and delete it 
immediately hereafter. Thank you.
------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
_______________________________________________
Mzmine-devel mailing list
Mzmine-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mzmine-devel

Reply via email to