Skip to content

Commit 29a7bd8

Browse files
committed
Fix v.6.25
1 parent f58cc27 commit 29a7bd8

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

PyAnalySeries.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
filesName = None
6161

6262
#========================================================================================
63-
version = 'v6.24'
63+
version = 'v6.25'
6464

6565
open_ws = {}
6666
open_displayWindows = {}
@@ -304,8 +304,6 @@ def update_items_from_data(ref_item):
304304

305305
itemDict = item.data(0, Qt.ItemDataRole.UserRole)
306306

307-
itemDict = item.data(0, Qt.ItemDataRole.UserRole)
308-
309307
if itemDict['Id'] == ref_itemDict['Id']:
310308
#print('----------update', itemDict['Id'], item.parent().text(0))
311309

releases.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 6.25
2+
* Fix XOriginalValues format to list in defineInterpolation
3+
values are converted to lists on save to avoid ambiguous comparisons
14
* 6.24
25
* Fix alignement of parameters
36
* Unified UI with Fusion style for consistent cross-platform rendering

resources/defineInterpolationWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ def saveInterpolationAndSeriesInterpolated(self):
898898
'InterpolationMode': self.interpolationMode,
899899
'X': self.X1Name,
900900
'XOriginal': self.X2Name,
901-
'XOriginalValues': self.X2,
901+
'XOriginalValues': self.X2.to_list(),
902902
'X1Coords': self.X1Coords,
903903
'X2Coords': self.X2Coords,
904904
'Color': generate_color(exclude_color=self.series2Dict['Color']),

test/ws_ex.xlsx

-11.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)