Showing with 5 additions and 4 deletions.
  1. +1 −2 python/plugins/fTools/tools/doValidate.py
  2. +2 −2 python/plugins/fTools/tools/doVisual.py
  3. +2 −0 python/pyplugin_installer/installer.py
3 changes: 1 addition & 2 deletions python/plugins/fTools/tools/doValidate.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ def keyPressEvent( self, e ):
e.key() == Qt.Key_C:
items = ""
for row in range( self.tblUnique.rowCount() ):
items.append( self.tblUnique.item( row, 0 ).text()
+ "," + self.tblUnique.item( row, 1 ).text() + "\n" )
items += self.tblUnique.item( row, 0 ).text() + "," + self.tblUnique.item( row, 1 ).text() + "\n"
if items:
clip_board = QApplication.clipboard()
clip_board.setText( items )
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doVisual.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ def keyPressEvent( self, e ):
items = ""
if self.myFunction in ( 1, 2 ):
for rec in range( self.tblUnique.rowCount() ):
items.append( self.tblUnique.item( rec, 0 ).text() + "\n" )
items += self.tblUnique.item( rec, 0 ).text() + "\n"
else:
for rec in range( self.tblUnique.rowCount() ):
items.append( self.tblUnique.item( rec, 0 ).text() + ":" + self.tblUnique.item( rec, 1 ).text() + "\n" )
items += self.tblUnique.item( rec, 0 ).text() + ":" + self.tblUnique.item( rec, 1 ).text() + "\n"
if items:
clip_board = QApplication.clipboard()
clip_board.setText( items )
Expand Down
2 changes: 2 additions & 0 deletions python/pyplugin_installer/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,5 +506,7 @@ def deleteRepository(self, reposName):
# ----------------------------------------- #
def setRepositoryInspectionFilter(self, reposName = None):
""" temporarily block another repositories to fetch only one for inspection """
if reposName is not None:
reposName = reposName.decode("utf-8")
repositories.setInspectionFilter(reposName)
self.reloadAndExportData()