diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-04-07 10:56:23 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-04-07 10:56:23 +0300 |
| commit | 02fe464c0fc173404771e0e61c5ac0db2a1813d3 (patch) | |
| tree | 644a088e83e0c5ecad5278c755db89d1e65bede7 /Software/Visual_Studio/Tango.DragAndDrop | |
| parent | 302f706666622cade696eeb024763821536660c4 (diff) | |
| download | Tango-02fe464c0fc173404771e0e61c5ac0db2a1813d3.tar.gz Tango-02fe464c0fc173404771e0e61c5ac0db2a1813d3.zip | |
Several bug fixes.
Diffstat (limited to 'Software/Visual_Studio/Tango.DragAndDrop')
| -rw-r--r-- | Software/Visual_Studio/Tango.DragAndDrop/DragAndDropService.cs | 11 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.DragAndDrop/Tango.DragAndDrop.csproj | 6 |
2 files changed, 14 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.DragAndDrop/DragAndDropService.cs b/Software/Visual_Studio/Tango.DragAndDrop/DragAndDropService.cs index 320891c61..6f9f8a354 100644 --- a/Software/Visual_Studio/Tango.DragAndDrop/DragAndDropService.cs +++ b/Software/Visual_Studio/Tango.DragAndDrop/DragAndDropService.cs @@ -13,7 +13,7 @@ using System.Windows.Media.Imaging; using System.Windows.Threading; using Tango.Core; using Tango.Core.EventArguments; - +using Tango.Logging; namespace Tango.DragAndDrop { @@ -554,7 +554,14 @@ namespace Tango.DragAndDrop else { DragEnded?.Invoke(_currentDragedElement, _currentDragedElement); - DropDraggable(); + try + { + DropDraggable(); + } + catch (Exception ex) + { + LogManager.Default.Log(ex, "Error on drop draggable."); + } } } diff --git a/Software/Visual_Studio/Tango.DragAndDrop/Tango.DragAndDrop.csproj b/Software/Visual_Studio/Tango.DragAndDrop/Tango.DragAndDrop.csproj index 074b494c7..e60f07d4d 100644 --- a/Software/Visual_Studio/Tango.DragAndDrop/Tango.DragAndDrop.csproj +++ b/Software/Visual_Studio/Tango.DragAndDrop/Tango.DragAndDrop.csproj @@ -104,11 +104,15 @@ <Project>{a34ee0f0-649d-41c8-8489-b6f1cc6924ee}</Project> <Name>Tango.Core</Name> </ProjectReference> + <ProjectReference Include="..\Tango.Logging\Tango.Logging.csproj"> + <Project>{BC932DBD-7CDB-488C-99E4-F02CF441F55E}</Project> + <Name>Tango.Logging</Name> + </ProjectReference> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <ProjectExtensions> <VisualStudio> - <UserProperties BuildVersion_StartDate="2000/1/1" BuildVersion_UseGlobalSettings="False" BuildVersion_BuildVersioningStyle="None.None.Increment.TimeStamp" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_AssemblyInfoFilename="Properties\AssemblyInfo.cs" /> + <UserProperties BuildVersion_AssemblyInfoFilename="Properties\AssemblyInfo.cs" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_BuildVersioningStyle="None.None.Increment.TimeStamp" BuildVersion_UseGlobalSettings="False" BuildVersion_StartDate="2000/1/1" /> </VisualStudio> </ProjectExtensions> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
