* Open the Notes Dialog.
*
* @param evt
*/
private void notesButtonMouseReleased(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_notesButtonMouseReleased
NotesDialog notesDialog = new NotesDialog(this, false, currentNotes);
notesDialog.setLocation(PeptideShakerGUI.this.getWidth() - notesDialog.getWidth() - 25 + PeptideShakerGUI.this.getX(),
PeptideShakerGUI.this.getHeight() - notesDialog.getHeight() - 25 + PeptideShakerGUI.this.getY());
notesDialog.setVisible(true);
currentNotes = new ArrayList<String>();
updateNotesNotificationCounter();
}//GEN-LAST:event_notesButtonMouseReleased