diff options
| author | Roy <roy.mail.net@gmail.com> | 2018-02-09 03:49:59 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2018-02-09 03:49:59 +0200 |
| commit | bfcefc0cf95f3b8d5243908753129c79bad8dc8b (patch) | |
| tree | 41ff2e6f9120d3f2317c4f773547c837ce48cc14 /Software/Visual_Studio/Tango.Editors | |
| parent | 1b74cee6e9073f3542b4733574ab304f40fc033b (diff) | |
| download | Tango-bfcefc0cf95f3b8d5243908753129c79bad8dc8b.tar.gz Tango-bfcefc0cf95f3b8d5243908753129c79bad8dc8b.zip | |
Implemented MultiGraph on TechView.
Diffstat (limited to 'Software/Visual_Studio/Tango.Editors')
| -rw-r--r-- | Software/Visual_Studio/Tango.Editors/ElementsEditor.xaml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Editors/ElementsEditor.xaml.cs b/Software/Visual_Studio/Tango.Editors/ElementsEditor.xaml.cs index a0e92ccf6..c6d4c00a3 100644 --- a/Software/Visual_Studio/Tango.Editors/ElementsEditor.xaml.cs +++ b/Software/Visual_Studio/Tango.Editors/ElementsEditor.xaml.cs @@ -730,7 +730,7 @@ namespace Tango.Editors /// <param name="e">The <see cref="MouseButtonEventArgs"/> instance containing the event data.</param> private void Element_PreviewMouseDown(object sender, MouseButtonEventArgs e) { - if (e.ChangedButton == MouseButton.Left && !Keyboard.IsKeyDown(Key.LeftShift)) + if (e.ChangedButton == MouseButton.Left && !Keyboard.IsKeyDown(Key.LeftShift) && !Keyboard.IsKeyDown(Key.LeftAlt)) { SelectedElement = sender as IElementEditor; } |
