Skip to content

Commit

Permalink
Fixed map mode searching: disassembly search isn't valid
Browse files Browse the repository at this point in the history
  • Loading branch information
robmcmullen committed Jan 21, 2016
1 parent cb2dc00 commit 304a642
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions omnivore/tasks/map_edit/map_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from omnivore.utils.wx.bitviewscroller import FontMapScroller
from omnivore.utils.binutil import ATRSegmentParser, XexSegmentParser
from omnivore.utils.command import Overlay
from omnivore.utils.searchutil import HexSearcher, CharSearcher
from omnivore.tasks.hex_edit.commands import ChangeByteCommand
from omnivore.framework.mouse_handler import MouseHandler

Expand Down Expand Up @@ -270,6 +271,8 @@ class MapEditor(HexEditor):

rect_select = True

searchers = [HexSearcher, CharSearcher]

##### Default traits

def _antic_tile_map_default(self):
Expand Down

0 comments on commit 304a642

Please sign in to comment.