From 5945c06ed87140ed8be887871a8d5f8c551e7067 Mon Sep 17 00:00:00 2001 From: Voltrex Date: Sat, 30 Oct 2021 04:45:09 +0000 Subject: [PATCH] style: separate @extends and @implements into separate lines This add readability to the code, especially as I'm using a tiling window manager. --- src/components/app/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/app/mod.rs b/src/components/app/mod.rs index 609ec16..622d39b 100644 --- a/src/components/app/mod.rs +++ b/src/components/app/mod.rs @@ -7,7 +7,9 @@ pub mod imp; use glib::wrapper; wrapper! { - pub struct EchidnaEditor(ObjectSubclass) @extends gio::Application, gtk::Application, @implements gio::ActionGroup, gio::ActionMap; + pub struct EchidnaEditor(ObjectSubclass) + @extends gio::Application, gtk::Application, + @implements gio::ActionGroup, gio::ActionMap; }