We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a78fcdc commit 9395cdbCopy full SHA for 9395cdb
picard/ui/metadatabox.py
@@ -230,6 +230,7 @@ def __init__(self, parent):
230
self.files = set()
231
self.tracks = set()
232
self.objects = set()
233
+ self.tag_diff = None
234
self.selection_mutex = QtCore.QMutex()
235
self.selection_dirty = False
236
self.editing = None # the QTableWidgetItem being edited
@@ -456,7 +457,8 @@ def _apply_update_funcs(self, funcs):
456
457
self.parent.update_selection(new_selection=False, drop_album_caches=True)
458
459
def edit_tag(self, tag):
- EditTagDialog(self.parent, tag).exec()
460
+ if self.tag_diff is not None:
461
+ EditTagDialog(self.parent, tag).exec()
462
463
def edit_selected_tag(self):
464
tags = self.selected_tags(filter_func=self.tag_is_editable)
0 commit comments