From 1e4ddae21b82c7d5d7ebbd6e7f8d36580ccced82 Mon Sep 17 00:00:00 2001
From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr>
Date: Wed, 3 May 2023 09:15:59 +0200
Subject: [PATCH] BC: Fix sort action.

---
 src/View/BoundaryCondition/BCUndoCommand.py           | 7 +++++--
 src/View/BoundaryCondition/BoundaryConditionWindow.py | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/View/BoundaryCondition/BCUndoCommand.py b/src/View/BoundaryCondition/BCUndoCommand.py
index 3cd3774f..dfddf82c 100644
--- a/src/View/BoundaryCondition/BCUndoCommand.py
+++ b/src/View/BoundaryCondition/BCUndoCommand.py
@@ -99,7 +99,7 @@ class SortCommand(QUndoCommand):
         self._lst = lst
         self._reverse = _reverse
 
-        self.old = self._lst.copy()
+        self._old = self._lst.copy()
         self._indexes = None
 
     def undo(self):
@@ -109,7 +109,10 @@ class SortCommand(QUndoCommand):
         )
 
     def redo(self):
-        self._lst.sort(self._reverse)
+        self._lst.sort(
+            reverse=self._reverse,
+            key=lambda x: x.name
+        )
         if self._indexes is None:
             self._indexes = list(
                 map(
diff --git a/src/View/BoundaryCondition/BoundaryConditionWindow.py b/src/View/BoundaryCondition/BoundaryConditionWindow.py
index 538b5a52..5edac341 100644
--- a/src/View/BoundaryCondition/BoundaryConditionWindow.py
+++ b/src/View/BoundaryCondition/BoundaryConditionWindow.py
@@ -202,7 +202,7 @@ class TableModel(QAbstractTableModel):
     def sort(self, _reverse, parent=QModelIndex()):
         self.layoutAboutToBeChanged.emit()
 
-        self._undo_stack.push(
+        self._undo.push(
             SortCommand(
                 self._lst, False
             )
-- 
GitLab