From 1211a78ad3615c6f597b90623148d30b47724cf6 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Wed, 4 Mar 2020 11:34:57 +0100
Subject: [PATCH] rename overview tab to special roles

---
 src/interaction/main/mainLinks.js | 2 +-
 src/js/slaveListing.js            | 2 +-
 src/uncategorized/options.tw      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/interaction/main/mainLinks.js b/src/interaction/main/mainLinks.js
index 816a2fa5686..c3556d512d2 100644
--- a/src/interaction/main/mainLinks.js
+++ b/src/interaction/main/mainLinks.js
@@ -88,7 +88,7 @@ App.UI.View.mainLinks = function() {
 		fragment.append(" ", link, " ", App.UI.DOM.makeElement("span", "[A]", "hotkey"));
 	}
 
-	if (V.useSlaveSummaryOverviewTab !== 1) {
+	if (V.useSlaveSummaryOverviewTab === 0) {
 		let div = document.createElement("div");
 		if (typeof V.slaveIndices[V.HeadGirl.ID] !== 'undefined') {
 			div.append(App.UI.DOM.makeElement("span", SlaveFullName(V.HeadGirl), "slave-name"), " is serving as your Head Girl");
diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js
index 804486eab59..8da0cfa2537 100644
--- a/src/js/slaveListing.js
+++ b/src/js/slaveListing.js
@@ -1005,7 +1005,7 @@ App.UI.SlaveList.penthousePage = function() {
 
 	// Overview tab
 	if (V.useSlaveSummaryOverviewTab) {
-		tabs.push(makeTabDesc('overview', 'Overview', overviewTabContent()));
+		tabs.push(makeTabDesc('overview', "Special Roles", overviewTabContent()));
 	}
 
 	if (V.useSlaveSummaryTabs === 0) {
diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw
index 3c6b1fb3f7f..d7160133660 100644
--- a/src/uncategorized/options.tw
+++ b/src/uncategorized/options.tw
@@ -233,7 +233,7 @@ This save was created using FC version $ver build $releaseID.
 		<</options>>
 
 		<<options $useSlaveSummaryOverviewTab>>
-			Condense special slaves into an overview tab
+			Condense special slaves into their own tab
 			<<option 1 "Enabled">>
 			<<option 0 "Disabled">>
 		<</options>>
-- 
GitLab