Browse Source

Add Ctrl+Enter shortcut for Generate Image

pull/324/head^2
Ionite 11 months ago
parent
commit
5f15800574
No known key found for this signature in database
  1. 1
      CHANGELOG.md
  2. 2
      StabilityMatrix.Avalonia/Views/Inference/InferenceImageToImageView.axaml
  3. 2
      StabilityMatrix.Avalonia/Views/Inference/InferenceImageUpscaleView.axaml
  4. 2
      StabilityMatrix.Avalonia/Views/Inference/InferenceTextToImageView.axaml

1
CHANGELOG.md

@ -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

2
StabilityMatrix.Avalonia/Views/Inference/InferenceImageToImageView.axaml

@ -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}">

2
StabilityMatrix.Avalonia/Views/Inference/InferenceImageUpscaleView.axaml

@ -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}">

2
StabilityMatrix.Avalonia/Views/Inference/InferenceTextToImageView.axaml

@ -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>

Loading…
Cancel
Save