Tony CHEMIT pushed to branch develop-7.x at ultreiaio / ird-observe Commits: 6c45d906 by tchemit at 2019-02-18T09:43:49Z Equipement bateau, bug sur suppression de caractéristique - Closes #1232 - - - - - 2 changed files: - client-core/src/main/java/fr/ird/observe/client/ui/content/data/longline/GearUseFeaturesLonglineUIHandler.java - client-core/src/main/java/fr/ird/observe/client/ui/content/data/seine/GearUseFeaturesSeineUIHandler.java Changes: ===================================== client-core/src/main/java/fr/ird/observe/client/ui/content/data/longline/GearUseFeaturesLonglineUIHandler.java ===================================== @@ -172,6 +172,8 @@ public class GearUseFeaturesLonglineUIHandler extends ContentTableUIHandler<Trip cellEditorAdjusting = true; try { JTables.doSelectCell(ui.getMeasurementsTable(), selectedRow, selectedColumn); + } catch (Exception e) { + log.error("Can't select row " + selectedRow, e); } finally { cellEditorAdjusting = false; } ===================================== client-core/src/main/java/fr/ird/observe/client/ui/content/data/seine/GearUseFeaturesSeineUIHandler.java ===================================== @@ -171,7 +171,11 @@ public class GearUseFeaturesSeineUIHandler extends ContentTableUIHandler<TripSei SwingUtilities.invokeLater(() -> { cellEditorAdjusting = true; try { - JTables.doSelectCell(ui.getMeasurementsTable(), selectedRow, selectedColumn); + try { + JTables.doSelectCell(ui.getMeasurementsTable(), selectedRow, selectedColumn); + } catch (Exception e) { + log.error("Can't select row " + selectedRow, e); + } } finally { cellEditorAdjusting = false; } View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/commit/6c45d90688652a44b68d56ed502b... -- View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/commit/6c45d90688652a44b68d56ed502b... You're receiving this email because of your account on gitlab.com.
participants (1)
-
Tony CHEMIT