We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de3cccc commit ef26466Copy full SHA for ef26466
browser/ui/startup/default_brave_browser_prompt.cc
@@ -133,6 +133,12 @@ bool ShouldShowDefaultBrowserPrompt(Profile* profile) {
133
} // namespace
134
135
void ShowDefaultBraveBrowserPrompt(Profile* profile) {
136
+#if !defined(OFFICIAL_BUILD)
137
+ // Disable in developer build. Showing with infobar didn't bother much but
138
+ // modal dialog could distract developers.
139
+ return;
140
+#endif
141
+
142
// Do not check if Chrome is the default browser if there is a policy in
143
// control of this setting.
144
if (g_browser_process->local_state()->IsManagedPreference(
0 commit comments