Commit 33526d4f authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

BC: Edit: Minor fix in paste feature.

Showing with 4 additions and 2 deletions
+4 -2
...@@ -89,8 +89,8 @@ class BoundaryCondition(object): ...@@ -89,8 +89,8 @@ class BoundaryCondition(object):
else: else:
new_1 = self._types[i](data[j].replace(",", ".")) new_1 = self._types[i](data[j].replace(",", "."))
else: else:
new_0 = self._types[0](data[0]) new_0 = self._types[0](data[0].replace(",", "."))
new_1 = self._types[1](data[1]) new_1 = self._types[1](data[1].replace(",", "."))
return (new_0, new_1) return (new_0, new_1)
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from tools import timer, trace
from View.ASubWindow import ASubMainWindow from View.ASubWindow import ASubMainWindow
from View.ListedSubWindow import ListedSubWindow from View.ListedSubWindow import ListedSubWindow
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment