From 8ba062064a82f7ab8066c14d93c1519a9f612e50 Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Mon, 8 Nov 2021 16:39:03 +0100 Subject: [PATCH] Rename column (twotheta -> 2theta) For #43 --- pyzebra/app/panel_ccl_integrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyzebra/app/panel_ccl_integrate.py b/pyzebra/app/panel_ccl_integrate.py index 415c971..d03b339 100644 --- a/pyzebra/app/panel_ccl_integrate.py +++ b/pyzebra/app/panel_ccl_integrate.py @@ -383,7 +383,7 @@ def create(): TableColumn(field="hkl", title="hkl", editor=CellEditor(), width=100), TableColumn(field="fit", title="Fit", editor=CellEditor(), width=50), TableColumn(field="export", title="Export", editor=CheckboxEditor(), width=50), - TableColumn(field="twotheta", title="twotheta", editor=CellEditor(), width=50), + TableColumn(field="twotheta", title="2theta", editor=CellEditor(), width=50), TableColumn(field="omega", title="omega", editor=CellEditor(), width=50), TableColumn(field="chi", title="chi", editor=CellEditor(), width=50), TableColumn(field="phi", title="phi", editor=CellEditor(), width=50),