mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 18:18: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,7 +2765,10 @@ namespace IDE.ui
|
||||||
{
|
{
|
||||||
String evalStr = scope String();
|
String evalStr = scope String();
|
||||||
CompactChildExpression(listViewItem, evalStr);
|
CompactChildExpression(listViewItem, evalStr);
|
||||||
evalStr.Insert(0, "&");
|
if (evalStr.StartsWith("*"))
|
||||||
|
evalStr.Remove(0, 1);
|
||||||
|
else
|
||||||
|
evalStr.Insert(0, "&");
|
||||||
gApp.mBreakpointPanel.CreateMemoryBreakpoint(evalStr);
|
gApp.mBreakpointPanel.CreateMemoryBreakpoint(evalStr);
|
||||||
gApp.MarkDirty();
|
gApp.MarkDirty();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue