Skip to content

Commit

Permalink
rename breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ddkwork committed Jun 23, 2024
1 parent f43a233 commit 1fd1b0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ux/HyperDbg.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type (
pe *widget.Tab
log *widget.Tab
notes *widget.Tab
breakp *widget.Tab
breaks *widget.Tab
memory *widget.Tab
stack *widget.Tab
seh *widget.Tab
Expand All @@ -71,7 +71,7 @@ func (p *Page) Elems() []*widget.Tab {
p.pe,
p.log,
p.notes,
p.breakp,
p.breaks,
p.memory,
p.stack,
p.seh,
Expand Down Expand Up @@ -121,7 +121,7 @@ func NewPage() *Page {
pe: widget.NewTab("peView", "", false, LayoutPeView(path, dock)),
log: widget.NewTab("log", "", false, LayoutLog(dock)),
notes: widget.NewTab("notes", "", false, LayoutNotes(dock)),
breakp: widget.NewTab("break", "", false, LayoutBreak(dock)),
breaks: widget.NewTab("break", "", false, LayoutBreak(dock)),
memory: widget.NewTab("memory", "", false, LayoutMemory(dock)),
stack: widget.NewTab("stack", "", false, LayoutStack(dock)),
seh: widget.NewTab("seh", "", false, LayoutSeh(dock)),
Expand Down

0 comments on commit 1fd1b0c

Please sign in to comment.