diff --git a/src/tray-icon.vala b/src/tray-icon.vala index 9cf9545..3f8ea99 100644 --- a/src/tray-icon.vala +++ b/src/tray-icon.vala @@ -97,7 +97,9 @@ namespace TUFManager { Notify.init (_ ("TUF Manager")); - restore (); + if (settings.get_boolean ("restore")) { + restore (); + } thread = new Thread ("poll_fan", this.poll_fan); }