1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Added Quick Info key

This commit is contained in:
Brian Fiete 2020-03-24 15:26:32 -07:00
parent 9bd71299d9
commit 2f78063927
4 changed files with 459 additions and 1 deletions

View file

@ -3670,6 +3670,17 @@ namespace IDE
SetScale(1.0f, true);
}
[IDECommand]
public void Cmd_QuickInfo()
{
var sourceViewPanel = GetActiveSourceViewPanel(true);
if (sourceViewPanel != null)
{
if (sourceViewPanel.mEditWidget.mEditWidgetContent.GetCursorLineChar(var line, var lineChar))
sourceViewPanel.UpdateMouseover(true, true, line, lineChar);
}
}
[IDECommand]
public void Cmd_ReformatDocument()
{