diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index 989516a..536563e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,10 +4,8 @@ static GLIB_LOGGER: glib::GlibLogger = glib::GlibLogger::new( ); fn main() { - gettextrs::bindtextdomain( - env!("CARGO_PKG_NAME"), - env!("LOCALEDIR") - ).expect("failed to bind text domain"); + gettextrs::bindtextdomain(env!("CARGO_PKG_NAME"), env!("LOCALEDIR")) + .expect("failed to bind text domain"); gettextrs::bind_textdomain_codeset(env!("CARGO_PKG_NAME"), "UTF-8").unwrap(); gettextrs::textdomain(env!("CARGO_PKG_NAME")).unwrap(); @@ -20,7 +18,8 @@ fn main() { spelling::init(); let app = relm4::RelmApp::new(bowl::APPLICATION_ID); - relm4::set_global_css("/* CSS for Bowl */ + relm4::set_global_css( + "/* CSS for Bowl */ .tag-pill button { min-height: 30px; min-width: 30px; @@ -28,7 +27,8 @@ fn main() { .tag-pill label { font-variant-caps: small-caps; } -"); +", + ); app.run_async::<bowl::App>(()); } |