Skip to content
Snippets Groups Projects
Commit 3b89c702 authored by tjc's avatar tjc
Browse files

fix for gene editor in read only mode

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@5694 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent a5e00be6
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/FeatureEdit.java,v 1.29 2007-03-15 11:40:47 tjc Exp $ * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/FeatureEdit.java,v 1.30 2007-03-19 10:15:03 tjc Exp $
**/ **/
package uk.ac.sanger.artemis.components; package uk.ac.sanger.artemis.components;
...@@ -66,7 +66,7 @@ import javax.swing.*; ...@@ -66,7 +66,7 @@ import javax.swing.*;
* FeatureEdit class * FeatureEdit class
* *
* @author Kim Rutherford * @author Kim Rutherford
* @version $Id: FeatureEdit.java,v 1.29 2007-03-15 11:40:47 tjc Exp $ * @version $Id: FeatureEdit.java,v 1.30 2007-03-19 10:15:03 tjc Exp $
**/ **/
public class FeatureEdit extends JPanel public class FeatureEdit extends JPanel
implements EntryChangeListener, FeatureChangeListener implements EntryChangeListener, FeatureChangeListener
...@@ -788,7 +788,8 @@ public class FeatureEdit extends JPanel ...@@ -788,7 +788,8 @@ public class FeatureEdit extends JPanel
{ {
public void actionPerformed(ActionEvent e) public void actionPerformed(ActionEvent e)
{ {
stopListening(); if(edit_feature.getEntry() != null)
stopListening();
frame.dispose(); frame.dispose();
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment