Allow animation interval greater than 100ms
This commit is contained in:
parent
991daa005c
commit
b25636bc87
|
@ -51,7 +51,7 @@ void RecursiveAnalysis::SetMarkers()
|
|||
{
|
||||
FunctionDelRange(start, end, false /* Do not override user-defined functions */);
|
||||
LoopDeleteRange(start, end); // clear loop range in function
|
||||
XrefDelRange(start, end); // clear xrefs in function
|
||||
//XrefDelRange(start, end); // clear xrefs in function
|
||||
FunctionAdd(start, end, false, icount, function.entryPoint);
|
||||
functionRanges.emplace(Range(start, end), nullptr);
|
||||
};
|
||||
|
|
|
@ -215,7 +215,7 @@ void MemUpdateMap()
|
|||
// Mark PEB
|
||||
if(pageBase == pebBase)
|
||||
{
|
||||
strcpy_s(page.info, GuiTranslateText(QT_TRANSLATE_NOOP("DBG", "PEB")));
|
||||
strcpy_s(page.info, "PEB");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -438,6 +438,9 @@
|
|||
<property name="toolTip">
|
||||
<string><html><head/><body><p>The debugger sleeps for a certain time in order to keep the interval between animation steps constant as specified in this setting.</p><p>If you want to animate as fast as possible set this to 0.</p></body></html></string>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>99999</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
|
|
Loading…
Reference in New Issue