1
0
Fork 0

Allow animation interval greater than 100ms

This commit is contained in:
torusrxxx 2020-12-10 17:17:26 +08:00 committed by Duncan Ogilvie
parent 991daa005c
commit b25636bc87
3 changed files with 5 additions and 2 deletions

View File

@ -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);
};

View File

@ -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;
}

View File

@ -438,6 +438,9 @@
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The debugger sleeps for a certain time in order to keep the interval between animation steps constant as specified in this setting.&lt;/p&gt;&lt;p&gt;If you want to animate as fast as possible set this to 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="maximum">
<number>99999</number>
</property>
</widget>
</item>
</layout>