mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 01:45:05 +08:00
changing default for memview to off
This commit is contained in:
+2
-2
@@ -43,13 +43,13 @@ public class DebuggerMemviewTraceListener extends TraceDomainObjectListener {
|
|||||||
Trace currentTrace;
|
Trace currentTrace;
|
||||||
TraceRecorder currentRecorder;
|
TraceRecorder currentRecorder;
|
||||||
|
|
||||||
private boolean trackTrace = true;
|
private boolean trackTrace = false;
|
||||||
private boolean trackThreads = true;
|
private boolean trackThreads = true;
|
||||||
private boolean trackRegions = true;
|
private boolean trackRegions = true;
|
||||||
private boolean trackModules = true;
|
private boolean trackModules = true;
|
||||||
private boolean trackSections = true;
|
private boolean trackSections = true;
|
||||||
private boolean trackBreakpoints = true;
|
private boolean trackBreakpoints = true;
|
||||||
private boolean trackBytes = true;
|
private boolean trackBytes = false;
|
||||||
|
|
||||||
private final AsyncDebouncer<Void> updateLabelDebouncer =
|
private final AsyncDebouncer<Void> updateLabelDebouncer =
|
||||||
new AsyncDebouncer<>(AsyncTimer.DEFAULT_TIMER, 100);
|
new AsyncDebouncer<>(AsyncTimer.DEFAULT_TIMER, 100);
|
||||||
|
|||||||
+1
-1
@@ -107,7 +107,7 @@ public class MemviewProvider extends ComponentProviderAdapter {
|
|||||||
.toolBarIcon(DebuggerResources.ICON_SYNC)
|
.toolBarIcon(DebuggerResources.ICON_SYNC)
|
||||||
.helpLocation(new HelpLocation(plugin.getName(), "toggle_process_trace")) //
|
.helpLocation(new HelpLocation(plugin.getName(), "toggle_process_trace")) //
|
||||||
.onAction(ctx -> performToggleTrace(ctx))
|
.onAction(ctx -> performToggleTrace(ctx))
|
||||||
.selected(true)
|
.selected(false)
|
||||||
.buildAndInstallLocal(this);
|
.buildAndInstallLocal(this);
|
||||||
|
|
||||||
new ToggleActionBuilder("Apply Filter To Panel", plugin.getName()) //
|
new ToggleActionBuilder("Apply Filter To Panel", plugin.getName()) //
|
||||||
|
|||||||
Reference in New Issue
Block a user