Skip to content

Commit e9a9650

Browse files
committed
style(DevSupport): Updating menu title and options
1 parent c200b83 commit e9a9650

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ReactWindows/ReactNative/DevSupport/DevOptionDialog.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
88
mc:Ignorable="d"
9-
Title="Dev Options"
9+
Title="Developer Support Menu"
1010
PrimaryButtonText="Cancel"
1111
PrimaryButtonClick="ContentDialog_PrimaryButtonClick">
1212

ReactWindows/ReactNative/DevSupport/DevSupportManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,9 @@ public void ShowDevOptionsDialog()
216216
_devSettings.IsReloadOnJavaScriptChangeEnabled =
217217
!_devSettings.IsReloadOnJavaScriptChangeEnabled),
218218
new DevOptionHandler(
219-
"Toggle Inspector",
219+
_devSettings.IsElementInspectorEnabled
220+
? "Hide Inspector"
221+
: "Show Inspector",
220222
() =>
221223
{
222224
_devSettings.IsElementInspectorEnabled = !_devSettings.IsElementInspectorEnabled;

0 commit comments

Comments
 (0)