From 326504e267d8aebd8b1f0639057170802d6cac81 Mon Sep 17 00:00:00 2001 From: devan Date: Wed, 12 Nov 2025 23:09:15 -0800 Subject: [PATCH] Toggle back on screenshots button if frames feature is on --- front_end/panels/timeline/TimelinePanel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front_end/panels/timeline/TimelinePanel.ts b/front_end/panels/timeline/TimelinePanel.ts index d0b05d2b899..4471b657640 100644 --- a/front_end/panels/timeline/TimelinePanel.ts +++ b/front_end/panels/timeline/TimelinePanel.ts @@ -1189,7 +1189,7 @@ export class TimelinePanel extends UI.Panel.Panel implements Client, TimelineMod // View this.panelToolbar.appendSeparator(); - if (!isNode && !isReactNative) { + if (!isNode && (Root.Runtime.experiments.isEnabled(Root.Runtime.RNExperimentName.ENABLE_TIMELINE_FRAMES) || !isReactNative)) { this.showScreenshotsToolbarCheckbox = this.createSettingCheckbox(this.showScreenshotsSetting, i18nString(UIStrings.captureScreenshots)); this.panelToolbar.appendToolbarItem(this.showScreenshotsToolbarCheckbox);