Remove unstable rustfmt options
This commit is contained in:
parent
710d23f51f
commit
6dfcef1f49
|
@ -1,10 +1 @@
|
|||
error_on_line_overflow = false
|
||||
fn_args_density = "Compressed"
|
||||
fn_args_layout = "Visual"
|
||||
fn_arg_intent = "Tabbed"
|
||||
reorder_imports = true
|
||||
reorder_imported_names = true
|
||||
report_todo = "Never"
|
||||
report_fixme = "Never"
|
||||
use_try_shorthand = true
|
||||
max_width = 110
|
||||
|
|
|
@ -93,7 +93,7 @@ use utils::Rectangle;
|
|||
use wayland_server::{Display, Global, LoopToken, NewResource, Resource};
|
||||
use wayland_server::commons::Implementation;
|
||||
use wayland_server::protocol::{wl_buffer, wl_callback, wl_compositor, wl_output, wl_region, wl_subcompositor};
|
||||
use wayland_server::protocol::wl_surface::{self, WlSurface};
|
||||
use wayland_server::protocol::wl_surface::WlSurface;
|
||||
|
||||
/// Description of which part of a surface
|
||||
/// should be considered damaged and needs to be redrawn
|
||||
|
|
|
@ -2,7 +2,7 @@ use super::{SubsurfaceRole, SurfaceAttributes};
|
|||
use super::roles::*;
|
||||
use std::sync::Mutex;
|
||||
use wayland_server::Resource;
|
||||
use wayland_server::protocol::wl_surface::{self, WlSurface};
|
||||
use wayland_server::protocol::wl_surface::WlSurface;
|
||||
|
||||
/// Node of a subsurface tree, holding some user specified data type U
|
||||
/// at each node
|
||||
|
|
Loading…
Reference in New Issue