summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Mischka <jacob@mischka.me>2020-08-05 15:14:56 -0500
committerVille Hakulinen <ville.hakulinen@gmail.com>2020-08-12 21:08:55 +0300
commit794f716be7d329f0eadf5879ed595be2457d84a9 (patch)
tree3b4e400760571de3c48ba079e303311dc334922b
parent336edb667b4235b5b7bbbf39de166c6a2e3fd0ce (diff)
Run cargo fmt
Oops, I thought my editor should do it for me
-rw-r--r--src/main.rs23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/main.rs b/src/main.rs
index a233996..826e0f3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -94,9 +94,9 @@ struct Options {
#[structopt(long = "disable-ext-tabline")]
disable_ext_tabline: bool,
- /// Enables dark theme
- #[structopt(long = "prefer-dark-theme")]
- prefer_dark_theme: bool,
+ /// Enables dark theme
+ #[structopt(long = "prefer-dark-theme")]
+ prefer_dark_theme: bool,
/// Geometry of the window in widthxheight form
#[structopt(long = "geometry", parse(try_from_str = parse_geometry), default_value = "1280x720")]
@@ -227,13 +227,16 @@ fn main() {
glib::set_application_name("GNvim");
gtk::Window::set_default_icon_name("gnvim");
- if opts.prefer_dark_theme {
- if let Some(settings) = gtk::Settings::get_default() {
- if let Err(err) = settings.set_property("gtk-application-prefer-dark-theme", &true.to_value()) {
- error!("Failed to set dark theme setting: {}", err);
- }
- }
- }
+ if opts.prefer_dark_theme {
+ if let Some(settings) = gtk::Settings::get_default() {
+ if let Err(err) = settings.set_property(
+ "gtk-application-prefer-dark-theme",
+ &true.to_value(),
+ ) {
+ error!("Failed to set dark theme setting: {}", err);
+ }
+ }
+ }
app.connect_activate(move |app| {
let opts = &opts;