Remove wayland fix for good

Signed-off-by: simonspa <simonspa@kth.se>
This commit is contained in:
Simon Spannagel
2023-01-30 08:06:48 +01:00
parent 32760ba00c
commit 6db94983a1
4 changed files with 0 additions and 130 deletions

View File

@@ -614,12 +614,6 @@ pub fn is_login_wayland() -> bool {
return false;
}
#[inline]
pub fn fix_login_wayland() {
#[cfg(target_os = "linux")]
crate::platform::linux::fix_login_wayland();
}
#[inline]
pub fn current_is_wayland() -> bool {
#[cfg(target_os = "linux")]
@@ -628,14 +622,6 @@ pub fn current_is_wayland() -> bool {
return false;
}
#[inline]
pub fn modify_default_login() -> String {
#[cfg(target_os = "linux")]
return crate::platform::linux::modify_default_login();
#[cfg(not(target_os = "linux"))]
return "".to_owned();
}
#[inline]
pub fn get_software_update_url() -> String {
SOFTWARE_UPDATE_URL.lock().unwrap().clone()