Skip to content

Commit 6a76655

Browse files
authored
Merge pull request #1917 from HEXRD/wppf-texture
Add texture support to WPPF
2 parents 3123682 + fada4e4 commit 6a76655

11 files changed

+1268
-45
lines changed

hexrdgui/calibration/tree_item_models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ def set_config_val(self, path, value):
5959

6060
setattr(param, attribute, value)
6161

62+
if attribute == 'vary' and hasattr(param, '_on_vary_modified'):
63+
# Trigger the callback function
64+
param._on_vary_modified()
65+
6266
def data(self, index, role):
6367
if (
6468
role in (Qt.BackgroundRole, Qt.ForegroundRole) and

0 commit comments

Comments
 (0)