mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Merge branch 'development'
This commit is contained in:
commit
1d23c69d39
@ -10,7 +10,7 @@ namespace Artemis.Core;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
||||||
{
|
{
|
||||||
private Version? _api;
|
private Version? _api = new(1, 0, 0);
|
||||||
private string? _author;
|
private string? _author;
|
||||||
private bool _autoEnableFeatures = true;
|
private bool _autoEnableFeatures = true;
|
||||||
private string? _description;
|
private string? _description;
|
||||||
|
|||||||
@ -36,9 +36,9 @@
|
|||||||
<Button HorizontalAlignment="Center" Command="{CompiledBinding AddSubmission}">Submit new entry</Button>
|
<Button HorizontalAlignment="Center" Command="{CompiledBinding AddSubmission}">Submit new entry</Button>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<StackPanel Spacing="15">
|
<Grid RowDefinitions="Auto,*">
|
||||||
<Button HorizontalAlignment="Right" Command="{CompiledBinding AddSubmission}">Submit new entry</Button>
|
<Button Grid.Row="0" Margin="0 0 0 15" HorizontalAlignment="Right" Command="{CompiledBinding AddSubmission}">Submit new entry</Button>
|
||||||
<ScrollViewer IsVisible="{CompiledBinding Entries.Count}">
|
<ScrollViewer Grid.Row="1" IsVisible="{CompiledBinding Entries.Count}">
|
||||||
<ItemsControl ItemsSource="{CompiledBinding Entries}">
|
<ItemsControl ItemsSource="{CompiledBinding Entries}">
|
||||||
<ItemsControl.ItemTemplate>
|
<ItemsControl.ItemTemplate>
|
||||||
<DataTemplate>
|
<DataTemplate>
|
||||||
@ -52,7 +52,7 @@
|
|||||||
</ItemsControl.ItemsPanel>
|
</ItemsControl.ItemsPanel>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</StackPanel>
|
</Grid>
|
||||||
|
|
||||||
</Panel>
|
</Panel>
|
||||||
</Panel>
|
</Panel>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user