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

test and warn for flipping sequences in Artemis

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@13905 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 5d4d2f07
No related branches found
No related tags found
No related merge requests found
...@@ -2575,6 +2575,12 @@ public class BamView extends JPanel ...@@ -2575,6 +2575,12 @@ public class BamView extends JPanel
*/ */
public void displayAdjustmentValueChanged(final DisplayAdjustmentEvent event) public void displayAdjustmentValueChanged(final DisplayAdjustmentEvent event)
{ {
if(event.getType() == DisplayAdjustmentEvent.REV_COMP_EVENT &&
event.isRevCompDisplay())
JOptionPane.showMessageDialog(this,
"Flipping the display is not supported by BamView.", "Warning",
JOptionPane.WARNING_MESSAGE);
if(!asynchronous) if(!asynchronous)
{ {
// if not asynchronous // if not asynchronous
......
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