bec-widgets 2.19.3__py3-none-any.whl → 2.19.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +11 -0
- PKG-INFO +1 -1
- bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_tree.py +6 -4
- {bec_widgets-2.19.3.dist-info → bec_widgets-2.19.4.dist-info}/METADATA +1 -1
- {bec_widgets-2.19.3.dist-info → bec_widgets-2.19.4.dist-info}/RECORD +9 -9
- pyproject.toml +1 -1
- {bec_widgets-2.19.3.dist-info → bec_widgets-2.19.4.dist-info}/WHEEL +0 -0
- {bec_widgets-2.19.3.dist-info → bec_widgets-2.19.4.dist-info}/entry_points.txt +0 -0
- {bec_widgets-2.19.3.dist-info → bec_widgets-2.19.4.dist-info}/licenses/LICENSE +0 -0
CHANGELOG.md
CHANGED
@@ -1,6 +1,17 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
3
|
|
4
|
+
## v2.19.4 (2025-06-26)
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
- **curve tree**: Remove manual interception of the close event; call parent cleanup
|
9
|
+
([`bc3085a`](https://github.com/bec-project/bec_widgets/commit/bc3085ab8cb6688da358df4a7c07fc213a99f2df))
|
10
|
+
|
11
|
+
- **waveform**: Curve tree elements must clean up signal combobox
|
12
|
+
([`9cba696`](https://github.com/bec-project/bec_widgets/commit/9cba696afd3300a76678dfdc4226604696cc3696))
|
13
|
+
|
14
|
+
|
4
15
|
## v2.19.3 (2025-06-25)
|
5
16
|
|
6
17
|
### Bug Fixes
|
PKG-INFO
CHANGED
@@ -263,6 +263,11 @@ class CurveRow(QTreeWidgetItem):
|
|
263
263
|
self.device_edit.deleteLater()
|
264
264
|
self.device_edit = None
|
265
265
|
|
266
|
+
if getattr(self, "entry_edit", None) is not None:
|
267
|
+
self.entry_edit.close()
|
268
|
+
self.entry_edit.deleteLater()
|
269
|
+
self.entry_edit = None
|
270
|
+
|
266
271
|
if getattr(self, "dap_combo", None) is not None:
|
267
272
|
self.dap_combo.close()
|
268
273
|
self.dap_combo.deleteLater()
|
@@ -575,7 +580,4 @@ class CurveTree(BECWidget, QWidget):
|
|
575
580
|
all_items = list(self.all_items)
|
576
581
|
for item in all_items:
|
577
582
|
item.remove_self()
|
578
|
-
|
579
|
-
def closeEvent(self, event):
|
580
|
-
self.cleanup()
|
581
|
-
return super().closeEvent(event)
|
583
|
+
super().cleanup()
|
@@ -2,11 +2,11 @@
|
|
2
2
|
.gitlab-ci.yml,sha256=1nMYldzVk0tFkBWYTcUjumOrdSADASheWOAc0kOFDYs,9509
|
3
3
|
.pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
|
4
4
|
.readthedocs.yaml,sha256=ivqg3HTaOxNbEW3bzWh9MXAkrekuGoNdj0Mj3SdRYuw,639
|
5
|
-
CHANGELOG.md,sha256=
|
5
|
+
CHANGELOG.md,sha256=HL7j_MI9wDAY3F4WDSATAm39__vXxSGutwFgqSILeLY,310008
|
6
6
|
LICENSE,sha256=Daeiu871NcAp8uYi4eB_qHgvypG-HX0ioRQyQxFwjeg,1531
|
7
|
-
PKG-INFO,sha256=
|
7
|
+
PKG-INFO,sha256=DYpsmxCbsoeZ_s88y9xio7Jrm0qiijqRDAOU1cWd9KY,1254
|
8
8
|
README.md,sha256=oY5Jc1uXehRASuwUJ0umin2vfkFh7tHF-LLruHTaQx0,3560
|
9
|
-
pyproject.toml,sha256=
|
9
|
+
pyproject.toml,sha256=7FqhxutAF5XmRYT-gtmM1Ts_RD-bfsFsy2QqlLfUSIA,2835
|
10
10
|
.git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
|
11
11
|
.github/pull_request_template.md,sha256=F_cJXzooWMFgMGtLK-7KeGcQt0B4AYFse5oN0zQ9p6g,801
|
12
12
|
.github/ISSUE_TEMPLATE/bug_report.yml,sha256=WdRnt7HGxvsIBLzhkaOWNfg8IJQYa_oV9_F08Ym6znQ,1081
|
@@ -322,7 +322,7 @@ bec_widgets/widgets/plots/waveform/waveform_plugin.py,sha256=2AZPtBHs75l9cdhwQnY
|
|
322
322
|
bec_widgets/widgets/plots/waveform/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
323
|
bec_widgets/widgets/plots/waveform/settings/curve_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
324
324
|
bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_setting.py,sha256=jnhd_FqSvLI8xqeXWe1DizP3o_JRfU64swXxqP9Sk6U,4580
|
325
|
-
bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_tree.py,sha256=
|
325
|
+
bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_tree.py,sha256=xWcaYjUIUtRn-sELdHtV1DCZpkdB7XUz3WUZBkMbtYE,23166
|
326
326
|
bec_widgets/widgets/plots/waveform/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
327
327
|
bec_widgets/widgets/plots/waveform/utils/roi_manager.py,sha256=zCl3-p3qP02zi837Udz8VUzsbUAwiP-26K3VpLsvaUU,2964
|
328
328
|
bec_widgets/widgets/progress/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -420,8 +420,8 @@ bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.py,sha256=O
|
|
420
420
|
bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.pyproject,sha256=Lbi9zb6HNlIq14k6hlzR-oz6PIFShBuF7QxE6d87d64,34
|
421
421
|
bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button_plugin.py,sha256=CzChz2SSETYsR8-36meqWnsXCT-FIy_J_xeU5coWDY8,1350
|
422
422
|
bec_widgets/widgets/utility/visual/dark_mode_button/register_dark_mode_button.py,sha256=rMpZ1CaoucwobgPj1FuKTnt07W82bV1GaSYdoqcdMb8,521
|
423
|
-
bec_widgets-2.19.
|
424
|
-
bec_widgets-2.19.
|
425
|
-
bec_widgets-2.19.
|
426
|
-
bec_widgets-2.19.
|
427
|
-
bec_widgets-2.19.
|
423
|
+
bec_widgets-2.19.4.dist-info/METADATA,sha256=DYpsmxCbsoeZ_s88y9xio7Jrm0qiijqRDAOU1cWd9KY,1254
|
424
|
+
bec_widgets-2.19.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
425
|
+
bec_widgets-2.19.4.dist-info/entry_points.txt,sha256=dItMzmwA1wizJ1Itx15qnfJ0ZzKVYFLVJ1voxT7K7D4,214
|
426
|
+
bec_widgets-2.19.4.dist-info/licenses/LICENSE,sha256=Daeiu871NcAp8uYi4eB_qHgvypG-HX0ioRQyQxFwjeg,1531
|
427
|
+
bec_widgets-2.19.4.dist-info/RECORD,,
|
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|