bump c4p
Some checks failed
FModel QA Builder / build (push) Has been cancelled

support for MK1 morph targets + various wwise audio formats including the good old AkAudioEvent
This commit is contained in:
Asval 2025-02-18 20:28:16 +01:00
parent 34116d62b2
commit ae0e638854
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit c36748f206d19eea45a6f2ea4cc82e56617d87c9
Subproject commit 6e13883a127500e4a3798cf79cf216466a8764b7

View File

@ -65,7 +65,7 @@
</Grid>
</Grid>
<Grid Grid.Column="1">
<Grid Grid.Column="1" MaxHeight="96">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="15" />

View File

@ -12,7 +12,7 @@ public class DateTimeToDateConverter : IValueConverter
{
if (value is DateTime dateTime)
{
return DateOnly.FromDateTime(dateTime);
return DateOnly.FromDateTime(dateTime.ToLocalTime());
}
return value;
}