Calling dialog for outgoing shipcall async to show incoming call asap

This commit is contained in:
Daniel Schick 2024-04-25 09:07:39 +02:00
parent afac489299
commit 7abbd190b5
2 changed files with 7 additions and 3 deletions

View File

@ -11,8 +11,8 @@
<ResourceDictionary Source="Resources\StringResources.xaml"/>
</ResourceDictionary.MergedDictionaries>
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">8</sys:Double>
<sys:Double x:Key="{x:Static SystemParameters.HorizontalScrollBarHeightKey}">8</sys:Double>
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">10</sys:Double>
<sys:Double x:Key="{x:Static SystemParameters.HorizontalScrollBarHeightKey}">10</sys:Double>
</ResourceDictionary>

View File

@ -290,7 +290,11 @@ namespace BreCalClient
foreach(ParticipantType pType in esc.ShipcallModel.AssignedParticipants.Keys)
scmOut.AssignedParticipants[pType] = esc.ShipcallModel.AssignedParticipants[pType];
}
this.Dispatcher.Invoke(() =>
{
NewWithModel(scmOut);
});
}
}
}