From bade823139cb3c6df0f9980d73c673e95b8961a3 Mon Sep 17 00:00:00 2001 From: "pascale.noyret" Date: Thu, 14 Feb 2019 15:22:24 +0100 Subject: [PATCH] recherche de keyword non case sensitive dans l arbre du JDC --- InterfaceQT4/monRecherche.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InterfaceQT4/monRecherche.py b/InterfaceQT4/monRecherche.py index 059456cc..16fdfaf3 100644 --- a/InterfaceQT4/monRecherche.py +++ b/InterfaceQT4/monRecherche.py @@ -59,6 +59,6 @@ class DRecherche(Ui_desRecherche ,QDialog): def recherche(self): self.motAChercher=self.LERecherche.text() - self.listeTrouvee=self.tree.findItems(self.motAChercher,Qt.MatchContains|Qt.MatchRecursive,1) + self.listeTrouvee=self.tree.findItems(self.motAChercher,Qt.MatchContains|Qt.MatchRecursive,0) self.surLigne=0 -- 2.39.2