mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 08:58:00 +02:00
Fixed generic interference with generic tuples
This commit is contained in:
parent
7e947265da
commit
79c9f5d818
6 changed files with 41 additions and 26 deletions
|
@ -4576,12 +4576,24 @@ namespace IDE
|
|||
dialog.PopupWindow(mMainWindow);
|
||||
}
|
||||
|
||||
[IDECommand]
|
||||
public void SelectConfig(String config)
|
||||
{
|
||||
mMainFrame.mStatusBar.SelectConfig(config);
|
||||
}
|
||||
|
||||
[IDECommand]
|
||||
public void SelectConfig()
|
||||
{
|
||||
mMainFrame.mStatusBar.mConfigComboBox.ShowDropdown();
|
||||
}
|
||||
|
||||
[IDECommand]
|
||||
public void SelectPlatform(String platform)
|
||||
{
|
||||
mMainFrame.mStatusBar.SelectPlatform(platform);
|
||||
}
|
||||
|
||||
[IDECommand]
|
||||
public void SelectPlatform()
|
||||
{
|
||||
|
@ -4887,6 +4899,7 @@ namespace IDE
|
|||
return (mTestManager != null);
|
||||
}
|
||||
|
||||
[IDECommand]
|
||||
protected void RunTests(bool includeIgnored, bool debug)
|
||||
{
|
||||
if (mOutputPanel != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue