add private to bookmark default open setting

This commit is contained in:
Fabian Freund
2026-07-31 06:16:44 +02:00
parent 22c2b15de6
commit 7d87509aa1
4 changed files with 20 additions and 6 deletions
@@ -92,7 +92,7 @@ enum TabIntentOpenSetting { regular, private, isolated, ask }
/// Determines what happens when a bookmark is tapped in the bookmark list.
/// [ask] shows the "open in..." sheet (today's behavior, and the default);
/// the other values open the bookmark directly with no intermediate prompt.
enum BookmarkOpenSetting { regular, isolated, customTab, ask }
enum BookmarkOpenSetting { regular, private, isolated, customTab, ask }
enum TabDirection { newestFirst, oldestFirst }
@@ -1352,6 +1352,7 @@ const _$TabIntentOpenSettingEnumMap = {
const _$BookmarkOpenSettingEnumMap = {
BookmarkOpenSetting.regular: 'regular',
BookmarkOpenSetting.private: 'private',
BookmarkOpenSetting.isolated: 'isolated',
BookmarkOpenSetting.customTab: 'customTab',
BookmarkOpenSetting.ask: 'ask',