Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable refresh on record #1227

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion console_backend/src/main_tab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ impl MainTab {
self.shared_state
.set_sbp_logging(true, self.client_sender.clone());
self.shared_state.set_sbp_logging_filepath(Some(filepath));
self.shared_state.set_settings_refresh(true);
}
self.shared_state.set_sbp_logging_format(logging);
}
Expand Down
4 changes: 1 addition & 3 deletions console_backend/src/server_recv_thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use crate::errors::{
};
use crate::log_panel::LogLevel;
use crate::ntrip_tab::NtripOptions;
use crate::output::CsvLogging;
use crate::settings_tab;
use crate::shared_state::{AdvancedNetworkingState, ConnectionState, SharedState};
use crate::solution_tab::LatLonUnits;
Expand Down Expand Up @@ -107,8 +106,7 @@ pub fn server_recv_thread(
.get_directory()
.expect(CAP_N_PROTO_DESERIALIZATION_FAILURE);
shared_state.set_logging_directory(PathBuf::from(directory));
shared_state.lock().logging_bar.csv_logging =
CsvLogging::from(cv_in.get_csv_logging());
shared_state.set_csv_logging(cv_in.get_csv_logging().into());
shared_state.set_sbp_logging(cv_in.get_sbp_logging(), client_sender.clone());
let sbp_logging_format = cv_in
.get_sbp_logging_format()
Expand Down
Loading