1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 22:34:09 +02:00

Added Sync with Workspace Panel option

This commit is contained in:
Brian Fiete 2021-02-03 12:48:04 -08:00
parent c3238272d0
commit 3f68473fe1
6 changed files with 54 additions and 0 deletions

View file

@ -4900,6 +4900,13 @@ namespace IDE
return activePanel.mParent as DarkTabbedView;
}
void SyncWithWorkspacePanel()
{
var activeSourceViewPanel = GetActiveSourceViewPanel();
if (activeSourceViewPanel != null)
activeSourceViewPanel.SyncWithWorkspacePanel();
}
[IDECommand]
void TabFirst()
{
@ -13537,6 +13544,7 @@ namespace IDE
[Import("user32.lib"), CLink, CallingConvention(.Stdcall)]
public static extern bool MessageBeep(MessageBeepType type);
#endif
}
static