BC: Edit: Minor fix in paste feature.

mesh
Pierre-Antoine Rouby 2023-05-11 16:52:29 +02:00
parent 6d14366bf7
commit 33526d4f09
2 changed files with 4 additions and 2 deletions

View File

@ -89,8 +89,8 @@ class BoundaryCondition(object):
else:
new_1 = self._types[i](data[j].replace(",", "."))
else:
new_0 = self._types[0](data[0])
new_1 = self._types[1](data[1])
new_0 = self._types[0](data[0].replace(",", "."))
new_1 = self._types[1](data[1].replace(",", "."))
return (new_0, new_1)

View File

@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
from tools import timer, trace
from View.ASubWindow import ASubMainWindow
from View.ListedSubWindow import ListedSubWindow