Skip to content

Commit

Permalink
0.73b
Browse files Browse the repository at this point in the history
- Fixed creating an AreaEffect instead of a Soundset when trying to add a custom soundset
- Fixed custom object label not working correctly
  • Loading branch information
Cjreek committed Jan 13, 2024
1 parent ac88828 commit 5fb4386
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eos-edit/Views/CustomObjectInstanceView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</StackPanel>

<TextBlock Grid.Row="1" Grid.Column="0" Text="Label" Margin="0,0,5,0" HorizontalAlignment="Right"/>
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Data.Label}" Height="22" VerticalContentAlignment="Center"/>
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Data.Name}" Height="22" VerticalContentAlignment="Center"/>

<CheckBox Content="Disable" Grid.Row="1" Grid.Column="3" Margin="3,-2,0,0" IsChecked="{Binding Data.Disabled}"/>

Expand Down
6 changes: 3 additions & 3 deletions eos-edit/Views/MainWindow.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Eos.Views.MainWindow" MinHeight="300" MinWidth="500"
Height="700" Width="1100" Loaded="mainWindow_Loaded"
x:Name="mainWindow" Tag="Eos Toolset v0.73a" FontFamily="Segoe UI"
x:Name="mainWindow" Tag="Eos Toolset v0.73b" FontFamily="Segoe UI"
Closing="mainWindow_Closing"
Icon="/Assets/Icons/Eos.ico">
<Window.Title>
Expand All @@ -29,7 +29,7 @@
<Binding Source="{x:Static repo:MasterRepository.Project}" Path="Name"/>
</MultiBinding>
</Window.Title>

<Window.KeyBindings>
<KeyBinding Command="{Binding Path=DataContext.CloseDetailCommand, ElementName=mainWindow}" CommandParameter="{Binding ElementName=mainWindow, Path=DataContext.CurrentView.Data}" Gesture="Ctrl+W"/>
<KeyBinding Command="{Binding Path=DataContext.GotoDetailCommand, ElementName=mainWindow}" Gesture="Ctrl+D1">
Expand Down Expand Up @@ -1276,7 +1276,7 @@
</TreeViewItem.Header>
</TreeViewItem>
<TreeViewItem Header="Other" Classes="category nocontext">
<TreeViewItem Items="{CompiledBinding Source={x:Static repo:MasterRepository.Project}, Path=Soundsets}" Classes="category" Tag="{x:Type models:AreaEffect}">
<TreeViewItem Items="{CompiledBinding Source={x:Static repo:MasterRepository.Project}, Path=Soundsets}" Classes="category" Tag="{x:Type models:Soundset}">
<TreeViewItem.Header>
<TextBlock>
<Run Text="Soundsets"/>
Expand Down

0 comments on commit 5fb4386

Please sign in to comment.