Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/Views/Hotkeys.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
FontSize="{Binding Source={x:Static vm:Preferences.Instance}, Path=DefaultFontSize, Converter={x:Static c:DoubleConverters.Increase}}"
Margin="0,8"/>

<Grid RowDefinitions="20,20,20,20,20,20,20,20,20,20,20,20" ColumnDefinitions="150,*">
<Grid RowDefinitions="20,20,20,20,20,20,20,20,20,20,20,20,20" ColumnDefinitions="150,*">
<TextBlock Grid.Row="0" Grid.Column="0" Classes="primary bold" Text="{OnPlatform Ctrl+Shift+H, macOS=⌘+⇧+H}"/>
<TextBlock Grid.Row="0" Grid.Column="1" Margin="16,0,0,0" Text="{DynamicResource Text.Hotkeys.Repo.GoHome}" />

Expand Down Expand Up @@ -116,6 +116,9 @@

<TextBlock Grid.Row="11" Grid.Column="0" Classes="primary bold" Text="F5"/>
<TextBlock Grid.Row="11" Grid.Column="1" Margin="16,0,0,0" Text="{DynamicResource Text.Hotkeys.Repo.Refresh}" />

<TextBlock Grid.Row="12" Grid.Column="0" Classes="primary bold" Text="F8"/>
<TextBlock Grid.Row="12" Grid.Column="1" Margin="16,0,0,0" Text="{DynamicResource Text.Repository.CustomActions}" />
</Grid>

<TextBlock Text="{DynamicResource Text.Hotkeys.TextEditor}"
Expand Down
2 changes: 1 addition & 1 deletion src/Views/RepositoryToolbar.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<Path Width="14" Height="14" Data="{StaticResource Icons.Bisect}"/>
</Button>

<Button Classes="icon_button" Width="32" Margin="8,0,0,0" Click="OpenCustomActionMenu" ToolTip.Tip="{DynamicResource Text.Repository.CustomActions}">
<Button Classes="icon_button" Width="32" Margin="8,0,0,0" Click="OpenCustomActionMenu" HotKey="{OnPlatform F8}" ToolTip.Tip="{DynamicResource Text.Repository.CustomActions}">
<Path Width="14" Height="14" Data="{StaticResource Icons.Action}"/>
</Button>

Expand Down
Loading