From a76755d961bf66d48aaab05b1001148468e60e2d Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Mon, 14 Apr 2014 01:32:15 -0400 Subject: [PATCH] Fix tip of the day setting not being saved --- osx/boe.dlgutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osx/boe.dlgutil.cpp b/osx/boe.dlgutil.cpp index dff499de..4c5f4041 100644 --- a/osx/boe.dlgutil.cpp +++ b/osx/boe.dlgutil.cpp @@ -1614,7 +1614,7 @@ void tip_of_day() showAtStart.setState(give_intro_hint ? led_red : led_off); tips.run(); - give_intro_hint = showAtStart.getState(); + give_intro_hint = showAtStart.getState() != led_off; save_prefs(); }