mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-18 16:10:26 +02:00
Fixed some tooltips, added Link Dependencies, more int-ness
This commit is contained in:
parent
939c818581
commit
d0e8332150
30 changed files with 180 additions and 432 deletions
|
@ -133,6 +133,13 @@ namespace IDE.ui
|
|||
PopupCallStackPanel();
|
||||
}
|
||||
}
|
||||
|
||||
public override bool WantsTooltip(float mouseX, float mouseY)
|
||||
{
|
||||
if ((mColumnIdx == 2) && (mouseX >= mListView.mParent.mWidth - LabelX - GS!(34)))
|
||||
return false;
|
||||
return base.WantsTooltip(mouseX, mouseY);
|
||||
}
|
||||
}
|
||||
|
||||
public class ThreadListView : DarkListView
|
||||
|
@ -357,7 +364,7 @@ namespace IDE.ui
|
|||
}
|
||||
|
||||
#unwarn
|
||||
int32 selectedIdx = mListView.GetRoot().GetIndexOfChild(item);
|
||||
int selectedIdx = mListView.GetRoot().GetIndexOfChild(item);
|
||||
|
||||
int32 threadId = int32.Parse(item.mLabel);
|
||||
gApp.mDebugger.SetActiveThread(threadId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue