Skip to content

Commit 4e520b0

Browse files
FLGMwtrozele
authored andcommitted
change inspector mode dev setting to automatic prop (microsoft#415)
1 parent d5e0ac1 commit 4e520b0

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

ReactWindows/ReactNative/DevSupport/DevInternalSettings.cs

+1-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class DevInternalSettings : IDeveloperSettings
1111
private const string JsDevModeDebugKey = "js_dev_mode_debug";
1212
private const string AnimationsDebugKey = "animations_debug";
1313
private const string JsMinifyDebugKey = "js_minify_debug";
14-
private const string ElementInspectorKey = "inspector_debug";
1514
private const string ReloadOnJSChangeKey = "reload_on_js_change";
1615
private const string HotModuleReplacementKey = "hot_module_replacement";
1716

@@ -70,17 +69,7 @@ public bool IsAnimationFpsDebugEnabled
7069
}
7170
}
7271

73-
public bool IsElementInspectorEnabled
74-
{
75-
get
76-
{
77-
return GetSetting(ElementInspectorKey, false);
78-
}
79-
set
80-
{
81-
SetSetting(ElementInspectorKey, value);
82-
}
83-
}
72+
public bool IsElementInspectorEnabled { get; set; }
8473

8574
public bool IsFpsDebugEnabled
8675
{

0 commit comments

Comments
 (0)