Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

Commit

Permalink
Merged from trunk
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/shortcuts@4400 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
  • Loading branch information
sandrejev committed Jul 6, 2009
1 parent bf7a01a commit f81ba1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -276,7 +276,7 @@ public void PythonRunMenuItemClass()
[Test]
public void PythonRunMenuItemShortcut()
{
Assert.AreEqual("Control|Shift|R", pythonRunMenuItemCodon["shortcut"]);
Assert.AreEqual("Ctrl+Shift+R", pythonRunMenuItemCodon["shortcut"]);
}

[Test]
Expand Down Expand Up @@ -741,7 +741,7 @@ public void PythonRunWithoutDebuggerMenuItemClass()
[Test]
public void PythonRunWithoutDebuggerMenuItemShortcut()
{
Assert.AreEqual("Control|Shift|W", pythonWithoutDebuggerRunMenuItemCodon["shortcut"]);
Assert.AreEqual("Ctrl+Shift+W", pythonWithoutDebuggerRunMenuItemCodon["shortcut"]);
}

[Test]
Expand Down
Expand Up @@ -125,7 +125,6 @@ public void MultiKeyGesturesMatchStartsWithTest()
var template1 = (MultiKeyGesture)multiKeyGestureConverter.ConvertFromInvariantString("Ctrl+");
var original1 = (MultiKeyGesture)multiKeyGestureConverter.ConvertFromInvariantString("Ctrl+D");
Assert.IsTrue(template1.IsTemplateFor(original1, GestureCompareMode.StartsWith));
Assert.IsTrue(original1.IsTemplateFor(template1, GestureCompareMode.StartsWith));

var template2 = (MultiKeyGesture)multiKeyGestureConverter.ConvertFromInvariantString("Ctrl+C");
var original2 = (MultiKeyGesture)multiKeyGestureConverter.ConvertFromInvariantString("Ctrl+C,Ctrl+D");
Expand Down

0 comments on commit f81ba1e

Please sign in to comment.