Skip to content

Commit

Permalink
Merge pull request #4 from ahkohd/feat/app-icon
Browse files Browse the repository at this point in the history
rename app_icon::get_app_icon to app_icon::get_icon
  • Loading branch information
ahkohd authored Nov 24, 2023
2 parents ae9f561 + 722ee6b commit c3e7045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/app-icon/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct GetAppIconError {
}

#[cfg(target_os = "macos")]
pub fn get_app_icon(app_path: &Path, save_path: &Path, size: f64) -> Result<(), GetAppIconError> {
pub fn get_icon(app_path: &Path, save_path: &Path, size: f64) -> Result<(), GetAppIconError> {
macos::request::get_icon(app_path, save_path, size)?;
Ok(())
}

0 comments on commit c3e7045

Please sign in to comment.