mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 10:08:00 +02:00
Break When Value Changes fix for *
deref exprs
This commit is contained in:
parent
d5642b6558
commit
8807c1ea83
1 changed files with 4 additions and 1 deletions
|
@ -2765,6 +2765,9 @@ namespace IDE.ui
|
|||
{
|
||||
String evalStr = scope String();
|
||||
CompactChildExpression(listViewItem, evalStr);
|
||||
if (evalStr.StartsWith("*"))
|
||||
evalStr.Remove(0, 1);
|
||||
else
|
||||
evalStr.Insert(0, "&");
|
||||
gApp.mBreakpointPanel.CreateMemoryBreakpoint(evalStr);
|
||||
gApp.MarkDirty();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue