File tree 2 files changed +10
-5
lines changed
Desktop/components/JASP/Widgets
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 28
28
implicitHeight: Math .max (leftColumn .childrenRect .height , rightColumn .childrenRect .height ) + 2 * jaspTheme .generalAnchorMargin
29
29
height: implicitHeight
30
30
property bool closeIcon: true
31
+ property alias columnNameValue: columnNameVariablesWindow .value
32
+ property alias columnTitleValue: columnTitleVariablesWindow .value
33
+ property alias columnDescriptionValue: columnDescriptionVariablesWindow .text
34
+ property alias columnComputedTypeValue: computedTypeVariableWindow .value
35
+ property alias columnTypeValue: columnTypeVariableWindow .value
31
36
32
37
Column
33
38
{
Original file line number Diff line number Diff line change @@ -44,11 +44,11 @@ FocusScope
44
44
{
45
45
if (columnModel .visible && columnModel .chosenColumn >= 0 )
46
46
{
47
- columnModel .columnName = columnNameVariablesWindow . value
48
- columnModel .columnTitle = columnTitleVariablesWindow . value
49
- columnModel .columnDescription = columnDescriptionVariablesWindow . text
50
- columnModel .computedType = computedTypeVariableWindow . value
51
- columnModel .currentColumnType = columnTypeVariableWindow . value
47
+ columnModel .columnName = tabInfo . columnNameValue
48
+ columnModel .columnTitle = tabInfo . columnTitleValue
49
+ columnModel .columnDescription = tabInfo . columnDescriptionValue
50
+ columnModel .computedType = tabInfo . columnComputedTypeValue
51
+ columnModel .currentColumnType = tabInfo . columnTypeValue
52
52
}
53
53
}
54
54
You can’t perform that action at this time.
0 commit comments