Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ fn read_css_overrides() -> Option<String> {
if !path.exists() {
eprintln!(
"CSS overrides file {} does not exist, using builtin CSS only.",
&path.display()
path.display()
);
return None;
}
Expand All @@ -444,7 +444,7 @@ fn read_css_overrides() -> Option<String> {
Err(e) => {
eprintln!(
"failed to read CSS overrides from {} with error: {}",
&path.display(),
path.display(),
e
);
None
Expand Down
4 changes: 2 additions & 2 deletions src/sketch_board.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ impl SketchBoard {
// Store the filepath for copy-filepath action
*self.last_saved_filepath.borrow_mut() = Some(output_filename.clone());
log_result(
&format!("File saved to '{}'.", &output_filename),
&format!("File saved to '{}'.", output_filename),
!APP_CONFIG.read().disable_notifications(),
)
}
Expand Down Expand Up @@ -616,7 +616,7 @@ impl SketchBoard {
filename = Some(output_filename.clone());
Self::remember_save_as_dir(Path::new(&output_filename));
log_result(
&format!("File saved to '{}'.", &output_filename),
&format!("File saved to '{}'.", output_filename),
!APP_CONFIG.read().disable_notifications(),
)
}
Expand Down
Loading