Skip to content

Commit

Permalink
Not sure when BeforeChangingColumn gets called exactly, but it probab…
Browse files Browse the repository at this point in the history
…ly should look at the active BasicColumnInfo.qml
  • Loading branch information
JorisGoosen committed Nov 29, 2023
1 parent 4b5a1d3 commit e72f84f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Desktop/components/JASP/Widgets/VariablesWindow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ FocusScope
{
if (columnModel.visible && columnModel.chosenColumn >= 0)
{
columnModel.columnName = tabInfo.columnNameValue
columnModel.columnTitle = tabInfo.columnTitleValue
columnModel.columnDescription = tabInfo.columnDescriptionValue
columnModel.computedType = tabInfo.columnComputedTypeValue
columnModel.currentColumnType = tabInfo.columnTypeValue
columnModel.columnName = (columnModel.compactMode ? tabInfo : columnInfoTop).columnNameValue
columnModel.columnTitle = (columnModel.compactMode ? tabInfo : columnInfoTop).columnTitleValue
columnModel.columnDescription = (columnModel.compactMode ? tabInfo : columnInfoTop).columnDescriptionValue
columnModel.computedType = (columnModel.compactMode ? tabInfo : columnInfoTop).columnComputedTypeValue
columnModel.currentColumnType = (columnModel.compactMode ? tabInfo : columnInfoTop).columnTypeValue
}
}

Expand Down

0 comments on commit e72f84f

Please sign in to comment.