Skip to content

Commit

Permalink
Fix a bug whereby an output would be opened even when initialised wit…
Browse files Browse the repository at this point in the history
…h only_last = true
  • Loading branch information
lorenzo-rovigatti committed Feb 8, 2024
1 parent 7f0eff6 commit f697071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Observables/ObservableOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void ObservableOutput::_open_output() {
}

void ObservableOutput::init() {
if(!_update_name_with_time) {
if(!_update_name_with_time && !_only_last) {
_open_output();
}

Expand Down

0 comments on commit f697071

Please sign in to comment.