Skip to content

Commit

Permalink
Refactor: DRY parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
gvnnz committed May 24, 2024
1 parent 3e19e0f commit 99ab193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glue/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Column makeColumn_(const v::Model::Column& modelColumn)
Column column{modelColumn.index, modelColumn.width, {}};

for (const ID channelId : modelColumn.channels)
column.channels.push_back(makeData_(channelId, g_ui->model.columns.getColumnByChannelId(channelId)));
column.channels.push_back(makeData_(channelId, modelColumn));

return column;
}
Expand Down

0 comments on commit 99ab193

Please sign in to comment.