From 03e1c7340eb95fab3a41c86abcd240842def4ef8 Mon Sep 17 00:00:00 2001 From: HummyPkg Date: Sat, 19 Jan 2019 12:32:00 +0000 Subject: [PATCH] Add option to disable underscore indicator --- webif/html/settings/modules/general/init.hook | 2 ++ webif/html/settings/modules/general/settings.hook | 1 + 2 files changed, 3 insertions(+) diff --git a/webif/html/settings/modules/general/init.hook b/webif/html/settings/modules/general/init.hook index 104f5465..4abf5126 100644 --- a/webif/html/settings/modules/general/init.hook +++ b/webif/html/settings/modules/general/init.hook @@ -5,6 +5,7 @@ set nomobile [$settings nomobile] set nohelplinks [$settings nohelplinks] set notwitfeed [$settings notwitfeed] set nounwatchedcount [$settings nounwatchedcount] +set nounderscore [$settings nounderscore] set hidevisualota [$settings hidevisualota] set chanchangenc [$settings chanchangenc] set audiomp3 [$settings audiomp3] @@ -15,6 +16,7 @@ handle_int_update nomobile $nomobile "Disable mobile link" handle_int_update nohelplinks $nohelplinks "Disable help links" handle_int_update notwitfeed $notwitfeed "Disable twitter feed ticker" handle_int_update nounwatchedcount $nounwatchedcount "Disable unwatched count" +handle_int_update nounderscore $nounderscore "Disable underscore count" handle_int_update hidevisualota $hidevisualota "Hide OTA from visual view" handle_int_update chanchangenc $chanchangenc \ "Disable channel change confirmation" diff --git a/webif/html/settings/modules/general/settings.hook b/webif/html/settings/modules/general/settings.hook index 703f7d6f..071e5917 100755 --- a/webif/html/settings/modules/general/settings.hook +++ b/webif/html/settings/modules/general/settings.hook @@ -32,6 +32,7 @@ setting_toggle "Mobile link on main page?" "nomobile" $(!$nomobile) 1 setting_toggle "Help links on main page?" "nohelplinks" $(!$nohelplinks) 1 setting_toggle "Twitter feed ticker on main page?" "notwitfeed" $(!$notwitfeed) 1 setting_toggle "Unwatched count on folders?" "nounwatchedcount" $(!$nounwatchedcount) 1 +setting_toggle "Underscore item indicator on folders?" "nounderscore" $(!$nounderscore) 1 setting_toggle "Hide OTA from Visual View?" "hidevisualota" $hidevisualota if {[system pkginst ir]} { setting_toggle "Disable channel change confirmation?" \