Skip to content

Commit

Permalink
minor compiler warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
momentarylapse committed Dec 1, 2024
1 parent b612e2d commit 5fd5a78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/view/sidebar/captureconsolemodes/CaptureConsoleMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ void CaptureConsoleMode::update_data_from_items() {
});*/

if (c->channel_selector) {
c->channel_selector->out_changed >> create_sink([this, c] {
c->channel_selector->out_changed >> create_sink([c] {
c->peak_meter_display->set_channel_map(c->channel_map());
});
c->channel_selector->out_state_changed >> create_sink([this, c] {
c->channel_selector->out_state_changed >> create_sink([c] {
c->peak_meter_display->set_channel_map(c->channel_map());
});
}
Expand Down

0 comments on commit 5fd5a78

Please sign in to comment.