示例#1
0
 def tag_editor(self, *args):
     d = TagEditor(self, self.db, None)
     d.exec_()
     if d.result() == QDialog.Accepted:
         tag_string = ', '.join(d.tags)
         self.tags.setText(tag_string)
         self.tags.update_items_cache(self.db.all_tags())
         self.remove_tags.update_items_cache(self.db.all_tags())