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:
parent
9bd71299d9
commit
2f78063927
4 changed files with 459 additions and 1 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue