style: separate @extends and @implements into separate lines

This add readability to the code, especially as I'm using a tiling window manager.
merge-requests/8/head
Voltrex 2021-10-30 04:45:09 +00:00 committed by FortressNordlys
parent 839b3d5bb0
commit 5945c06ed8
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ pub mod imp;
use glib::wrapper;
wrapper! {
pub struct EchidnaEditor(ObjectSubclass<imp::EchidnaEditor>) @extends gio::Application, gtk::Application, @implements gio::ActionGroup, gio::ActionMap;
pub struct EchidnaEditor(ObjectSubclass<imp::EchidnaEditor>)
@extends gio::Application, gtk::Application,
@implements gio::ActionGroup, gio::ActionMap;
}