Skip to content

Commit

Permalink
Add Ctrl+Enter shortcut for Generate Image
Browse files Browse the repository at this point in the history
  • Loading branch information
ionite34 committed Dec 13, 2023
1 parent 08c8490 commit 5f15800
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
- Addons usually affect guidance like ControlNet, T2I, FreeU, and other addons to come. They apply to the individual sampler, so you can mix and match different ControlNets for Base and Hires Fix, or use the current output from a previous sampler as ControlNet guidance image for HighRes passes.
- Added SD Turbo Scheduler
- Added display names for new samplers ("Heun++ 2", "DDPM", "LCM")
- Added Ctrl+Enter as a shortcut for the Generate Image button
#### Accounts Settings Subpage
- Lykos Account sign-up and login - currently for Patreon OAuth connections but GitHub requests caching and settings sync are planned
- Supporters can now connect your Patreon accounts, then head to the Updates page to choose to receive auto-updates from the Dev or Preview channels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@
Width="130"
HorizontalAlignment="Stretch"
Classes="accent"
ToolTip.Tip="{Binding $self.HotKey}"
HotKey="Ctrl+Enter"
Command="{Binding GenerateImageCommand}"
CommandParameter="{x:Static modelsInference:GenerateFlags.None}"
IsVisible="{Binding !GenerateImageCommand.CanBeCanceled}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@
Width="130"
HorizontalAlignment="Stretch"
Classes="accent"
HotKey="Ctrl+Enter"
ToolTip.Tip="{Binding $self.HotKey}"
Command="{Binding GenerateImageCommand}"
CommandParameter="{x:Static modelsInference:GenerateFlags.None}"
IsVisible="{Binding !GenerateImageCommand.CanBeCanceled}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@
HorizontalAlignment="Stretch"
Classes="accent"
Command="{Binding GenerateImageCommand}"
ToolTip.Tip="{Binding $self.HotKey}"
HotKey="Ctrl+Enter"
CommandParameter="{x:Static modelsInference:GenerateFlags.None}"
IsVisible="{Binding !GenerateImageCommand.CanBeCanceled}">
<Panel>
Expand Down

0 comments on commit 5f15800

Please sign in to comment.