diff --git a/public/_locales b/public/_locales
index dadf89c0eb..9539893db1 160000
--- a/public/_locales
+++ b/public/_locales
@@ -1 +1 @@
-Subproject commit dadf89c0eb194b394966102f94a4e739c8e877e6
+Subproject commit 9539893db1d43c4c456947967c775ba9e71f66d8
diff --git a/public/options/options.html b/public/options/options.html
index 63ffd4ba52..0a8f6f441e 100644
--- a/public/options/options.html
+++ b/public/options/options.html
@@ -365,7 +365,7 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/config.ts b/src/config.ts
index fbe3f9be9f..3115dad42f 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -77,6 +77,7 @@ interface SBConfig {
shownDeArrowPromotion: boolean;
showZoomToFillError2: boolean;
cleanPopup: boolean;
+ hideSegmentCreationInPopup: boolean;
// Used to cache calculated text color info
categoryPillColors: {
@@ -349,6 +350,7 @@ const syncDefaults = {
shownDeArrowPromotion: false,
showZoomToFillError2: true,
cleanPopup: false,
+ hideSegmentCreationInPopup: false,
categoryPillColors: {},
diff --git a/src/popup/PopupComponent.tsx b/src/popup/PopupComponent.tsx
index d79d084ba3..0d367d52f2 100644
--- a/src/popup/PopupComponent.tsx
+++ b/src/popup/PopupComponent.tsx
@@ -220,7 +220,7 @@ export const PopupComponent = () => {
}
{
- !Config.config.cleanPopup &&
+ !Config.config.cleanPopup && !Config.config.hideSegmentCreationInPopup &&