From 01fe5c4730287b3b1df47816a35e1336f1598e2e Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Fri, 12 Jan 2018 01:48:52 +0200 Subject: [PATCH] Revert to using light theme. --- hammond-gtk/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hammond-gtk/src/main.rs b/hammond-gtk/src/main.rs index 9dead41..6e4c510 100644 --- a/hammond-gtk/src/main.rs +++ b/hammond-gtk/src/main.rs @@ -74,10 +74,10 @@ fn main() { ); // This set's the app to dark mode. - // It wiil be in the user's preference later but for now - // I will abuse my power and force it on everyone till then :P. - let settings = gtk::Settings::get_default().unwrap(); - settings.set_property_gtk_application_prefer_dark_theme(true); + // It wiil be in the user's preference later. + // Uncomment it to run with the dark theme variant. + // let settings = gtk::Settings::get_default().unwrap(); + // settings.set_property_gtk_application_prefer_dark_theme(true); App::new().run(); }