Skip to content

Commit 7ac8031

Browse files
authored
Enable Property Editor refactors (#9227)
1 parent b2cae0e commit 7ac8031

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/devtools_app/lib/src/shared/feature_flags.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ extension FeatureFlags on Never {
9393
/// Flag to enable refactors in the Flutter Property Editor sidebar.
9494
///
9595
/// https://github.com/flutter/devtools/issues/9214
96-
static bool propertyEditorRefactors = enableExperiments;
96+
static bool propertyEditorRefactors = true;
9797

9898
/// Stores a map of all the feature flags for debugging purposes.
9999
///

packages/devtools_app/test/shared/primitives/feature_flags_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ void main() {
1919
expect(FeatureFlags.dapDebugging, false);
2020
expect(FeatureFlags.inspectorV2, true);
2121
expect(FeatureFlags.wasmOptInSetting, true);
22-
expect(FeatureFlags.propertyEditorRefactors, false);
22+
expect(FeatureFlags.propertyEditorRefactors, true);
2323
});
2424
}

0 commit comments

Comments
 (0)