mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-08 09:16:00 +02:00
Show invocation param info in mouseover
This commit is contained in:
parent
b784101e93
commit
cd3318cc3e
3 changed files with 68 additions and 9 deletions
|
@ -261,7 +261,7 @@ namespace IDE.ui
|
|||
float mOrigScreenY;
|
||||
float mTaskbarXOffset;
|
||||
float mTaskbarYOffset;
|
||||
bool mIsShown;
|
||||
public bool mIsShown;
|
||||
bool mCreatedWindow;
|
||||
bool mClosed;
|
||||
bool mOwnsListView = true;
|
||||
|
@ -752,7 +752,7 @@ namespace IDE.ui
|
|||
showString.RemoveToEnd(crPos);
|
||||
}
|
||||
}
|
||||
|
||||
showString.Replace('\r', '\n');
|
||||
useListViewItem.Label = showString;
|
||||
isStringLiteral = true;
|
||||
}
|
||||
|
@ -1543,6 +1543,13 @@ namespace IDE.ui
|
|||
|
||||
public bool Show(TextPanel textPanel, float x, float y, String displayString, String evalString)
|
||||
{
|
||||
if ((mIsShown) && (evalString.StartsWith(':')))
|
||||
{
|
||||
mDisplayString.Set(evalString.Substring(1));
|
||||
Rehup();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (mIsShown)
|
||||
Clear();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue