From 3129d2aded8a323dce9a184e3da99daac8bea35a Mon Sep 17 00:00:00 2001 From: ghostfeesh Date: Sat, 28 Jul 2018 07:06:42 +0800 Subject: Reverse IC log config option (#22) The way it should have been. Reverse IC logs, now in configurable in config.ini. Set to false by default. Now you can go up or down as and when you please. (thanks argo for putting up with my trash code) --- text_file_functions.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'text_file_functions.cpp') diff --git a/text_file_functions.cpp b/text_file_functions.cpp index b77e1788..1aebc35e 100644 --- a/text_file_functions.cpp +++ b/text_file_functions.cpp @@ -581,3 +581,9 @@ bool AOApplication::is_discord_enabled() QString f_result = read_config("discord"); return !f_result.startsWith("false"); } + +bool AOApplication::ic_scroll_down_enabled() +{ + QString f_result = read_config("ic_scroll_down"); + return f_result.startsWith("true"); +} \ No newline at end of file -- cgit