This is an automated email from the git hooks/post-receive script. New commit to branch feature/7498_selection_rapport_tableau_synthese in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 464c3280ef3f7bf83844a96c0a02fe90cfce7d70 Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Fri Aug 26 15:16:01 2016 +0200 Corrige la selection de requete dans le tableau des rapports La seclection d'un requete reinitialisait le champ à "choisir une requete" si une requete était déjà sélectionnée refs #7498 --- .../main/java/fr/ird/observe/ui/admin/report/ReportUIHandler.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/observe-application-swing/src/main/java/fr/ird/observe/ui/admin/report/ReportUIHandler.java b/observe-application-swing/src/main/java/fr/ird/observe/ui/admin/report/ReportUIHandler.java index f42720d..f8a42bc 100644 --- a/observe-application-swing/src/main/java/fr/ird/observe/ui/admin/report/ReportUIHandler.java +++ b/observe-application-swing/src/main/java/fr/ird/observe/ui/admin/report/ReportUIHandler.java @@ -223,13 +223,6 @@ public class ReportUIHandler extends AdminTabUIHandler { } JComboBox<Report> source = (JComboBox<Report>) event.getSource(); updateSelectedReport((Report) source.getSelectedItem()); - } else if (getStepModel().getSelectedReport() != null) { - - Object item = event.getItem(); - if (log.isInfoEnabled()) { - log.info("Item not selected: " + item); - } - updateSelectedReport(null); } } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.