7361: Do not save column order if there is not at least one column

This commit is contained in:
Jérôme Rapinat 2014-01-22 14:42:04 +01:00
parent fc8404d9bc
commit 68e8759a65

View File

@ -179,11 +179,11 @@ class ColumnOrder(gtk.VBox):
newvis.append(index)
neworder.append(index)
newsize.append(size)
if len(newvis) > 0 and self.on_apply:
self.config.set('columns.rank', neworder)
self.config.set('columns.size', newsize)
self.config.set('columns.visible', newvis)
self.config.save()
if len(newvis) > 0 and self.on_apply:
self.on_apply()
def toggled(cell, path, model):