Skip to content

Commit 05d48ca

Browse files
committed
some trivial wording nits
1 parent 6e354e9 commit 05d48ca

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

src/cascadia/TerminalSettingsEditor/Actions.xaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ the MIT License. See LICENSE in the project root for license information. -->
3838
<!-- This HorizontalContentAlignment="Stretch" is important
3939
to make sure it takes the entire width of the line -->
4040
<ListViewItem HorizontalContentAlignment="Stretch"
41-
AutomationProperties.Name="{x:Bind Name, Mode=OneWay}"
42-
AutomationProperties.AcceleratorKey="{x:Bind KeyChordText, Mode=OneWay}">
41+
AutomationProperties.Name="{x:Bind Name, Mode=OneWay}">
4342

4443
<Grid HorizontalAlignment="Stretch" ColumnSpacing="8" >
4544
<Grid.ColumnDefinitions>
@@ -49,7 +48,7 @@ the MIT License. See LICENSE in the project root for license information. -->
4948
<!-- command label -->
5049
<ColumnDefinition Width="*"/>
5150
<!-- key chord -->
52-
<ColumnDefinition Width="16"/>
51+
<ColumnDefinition Width="32"/>
5352
<!-- gutter for scrollbar -->
5453
</Grid.ColumnDefinitions>
5554

@@ -77,8 +76,7 @@ the MIT License. See LICENSE in the project root for license information. -->
7776

7877
<TextBlock Style="{ThemeResource KeyChordTextBlockStyle}"
7978
FontSize="12"
80-
Text="{x:Bind KeyChordText, Mode=OneWay}"
81-
AutomationProperties.AccessibilityView="Raw" />
79+
Text="{x:Bind KeyChordText, Mode=OneWay}" />
8280
</Border>
8381
</Grid>
8482
</ListViewItem>
@@ -174,10 +172,11 @@ the MIT License. See LICENSE in the project root for license information. -->
174172

175173
<ListView HorizontalAlignment="Stretch"
176174
VerticalAlignment="Stretch"
177-
SelectionMode="Single"
175+
SelectionMode="None"
176+
IsItemClickEnabled="False"
178177
CanReorderItems="False"
179178
AllowDrop="False"
180-
ItemsSource="{x:Bind FilteredActions}"
179+
ItemsSource="{x:Bind FilteredActions, Mode=OneWay}"
181180
ItemTemplate="{StaticResource GeneralItemTemplate}">
182181
</ListView>
183182

src/cascadia/TerminalSettingsEditor/Resources/en-US/Resources.resw

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
<value>Automatically copy selection to clipboard</value>
194194
</data>
195195
<data name="Globals_KeybindingsDisclaimer.Text" xml:space="preserve">
196-
<value>This is a list of the currently bound keys. Currently, these can only be edited in the settings file directly.</value>
196+
<value>This is a list of the currently bound keys. Currently, these can only be edited in the settings file.</value>
197197
</data>
198198
<data name="Globals_KeybindingsLink.Content" xml:space="preserve">
199199
<value>Open JSON settings</value>
@@ -351,7 +351,7 @@
351351
<value>Rendering</value>
352352
</data>
353353
<data name="Nav_Actions.Content" xml:space="preserve">
354-
<value>Keybindings</value>
354+
<value>Actions</value>
355355
</data>
356356
<data name="Profile_AcrylicOpacity.Header" xml:space="preserve">
357357
<value>Acrylic opacity</value>

0 commit comments

Comments
 (0)