diff --git a/src/ui_interface.rs b/src/ui_interface.rs index 1c285947e..152ea7581 100644 --- a/src/ui_interface.rs +++ b/src/ui_interface.rs @@ -131,11 +131,11 @@ pub fn get_license() -> String { #[cfg(windows)] if let Ok(lic) = crate::platform::windows::get_license_from_exe_name() { #[cfg(feature = "flutter")] - return format!("Key: {}\nHost: {}\nApi: {}", lic.key, lic.host, lic.api); + return format!("Key: {}\nHost: {}\nAPI: {}", lic.key, lic.host, lic.api); // default license format is html formed (sciter) #[cfg(not(feature = "flutter"))] return format!( - "
Key: {}
Host: {} Api: {}", + "
Key: {}
Host: {} API: {}", lic.key, lic.host, lic.api ); }