Index: lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java diff -u lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.3 lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.4 --- lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.3 Tue Jun 6 07:32:22 2006 +++ lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java Mon Sep 4 13:59:53 2006 @@ -23,9 +23,9 @@ * Created: 22 mars 2006 12:11:46 * * @author poussin - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * - * Last update: $Date: 2006/06/06 07:32:22 $ + * Last update: $Date: 2006/09/04 13:59:53 $ * by : $Author: ruchaud $ */ @@ -383,6 +383,7 @@ Reader reader = getClipBoardReader(); getMatrix().importCSV(reader, new int[]{0,0}); reader.close(); + matrixEditor.fireEvent(); matrixEditor.repaint(); } catch (Exception e) { JOptionPane.showMessageDialog(matrixEditor, @@ -414,6 +415,7 @@ Reader reader = getClipBoardReader(); getMatrix().importCSV(reader, getCoordinatesFirstCellSelectedMatrix()); reader.close(); + matrixEditor.fireEvent(); matrixEditor.repaint(); } catch (Exception e) { JOptionPane.showMessageDialog(matrixEditor, @@ -500,6 +502,7 @@ Reader reader = getFileChooserReader(); getMatrix().importCSV(reader, new int[]{0,0}); reader.close(); + matrixEditor.fireEvent(); matrixEditor.repaint(); } catch (Exception e) { JOptionPane.showMessageDialog(matrixEditor, @@ -528,6 +531,7 @@ Reader reader = getFileChooserReader(); getMatrix().importCSV(reader, getCoordinatesFirstCellSelectedMatrix()); reader.close(); + matrixEditor.fireEvent(); matrixEditor.repaint(); } catch (Exception e) { JOptionPane.showMessageDialog(matrixEditor,