mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 06:14:10 +02:00
Lost changes
This commit is contained in:
parent
e6c4a95ccd
commit
8e9d7ed4c4
56 changed files with 1579 additions and 794 deletions
|
@ -5073,7 +5073,11 @@ namespace IDE.ui
|
|||
String showMouseoverString = null;
|
||||
if (bestError.mError != null)
|
||||
{
|
||||
showMouseoverString = scope:: String(":", bestError.mError);
|
||||
int maxLen = 16*1024;
|
||||
if (bestError.mError.Length > maxLen)
|
||||
showMouseoverString = scope:: String()..Concat(":", StringView(bestError.mError, 0, maxLen), "...");
|
||||
else
|
||||
showMouseoverString = scope:: String()..Concat(":", bestError.mError);
|
||||
|
||||
if (bestError.mMoreInfo != null)
|
||||
{
|
||||
|
@ -5676,7 +5680,8 @@ namespace IDE.ui
|
|||
}
|
||||
}
|
||||
|
||||
UpdateMouseover();
|
||||
if (gApp.mIsUpdateBatchStart)
|
||||
UpdateMouseover();
|
||||
|
||||
var compiler = ResolveCompiler;
|
||||
var bfSystem = BfResolveSystem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue