From e429b8dfdda3228838cd839783d17376a65b44fe Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 18 Nov 2018 23:05:38 +0000 Subject: Remove `scale_with_dpi` setting from config Since the `scale_with_dpi` setting has been deprecated, but it hasn't been removed from the config, Alacritty would print an error every time it is started. To resolve this problem, the option is removed from the default configuration file. --- src/config.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/config.rs b/src/config.rs index ae1ec897..2028132f 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1894,16 +1894,10 @@ fn deserialize_scale_with_dpi<'a, D>(deserializer: D) -> ::std::result::Result, { - use ::util::fmt; // This is necessary in order to get serde to complete deserialization of the configuration let _ignored = bool::deserialize(deserializer); - eprintln!( - "{}", - fmt::Yellow( - "The `scale_with_dpi` setting has been removed, \ - on X11 the WINIT_HIDPI_FACTOR environment variable can be used instead." - ) - ); + error!("The `scale_with_dpi` setting has been removed, \ + on X11 the WINIT_HIDPI_FACTOR environment variable can be used instead."); Ok(None) } -- cgit v1.2.3-54-g00ecf