mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-22 14:41:39 +00:00
Moved DELTA_COLUMNS from app to result_table.
This commit is contained in:
@@ -127,9 +127,6 @@ class PyDupeGuruBase(PyFairware):
|
||||
def resultsAreModified(self):
|
||||
return self.py.results.is_modified
|
||||
|
||||
def deltaColumns(self):
|
||||
return list(self.py.DELTA_COLUMNS)
|
||||
|
||||
#---Properties
|
||||
@signature('v@:c')
|
||||
def setMixFileKind_(self, mix_file_kind):
|
||||
|
||||
@@ -17,6 +17,9 @@ class PyResultTable(PyTable):
|
||||
def setDeltaValuesMode_(self, value):
|
||||
self.py.delta_values = value
|
||||
|
||||
def deltaColumns(self):
|
||||
return list(self.py.DELTA_COLUMNS)
|
||||
|
||||
@signature('@@:i@')
|
||||
def valueForRow_column_(self, row_index, column):
|
||||
return self.py.get_row_value(row_index, column)
|
||||
|
||||
Reference in New Issue
Block a user