diff --git a/__init__.py b/__init__.py index f4275e4..576fd92 100644 --- a/__init__.py +++ b/__init__.py @@ -67,7 +67,7 @@ def OnAddressChange(self, context, frame, view, location): class SEHWidget(QWidget, UIContextNotification): def gotoAddr(self, addr): for x in self.dict: - if x[0] <= addr <= x[1]: + if x[0] <= addr < x[1]: row = self.dict[x] self.list.setCurrentRow(row) self.listItemClicked(self.list.item(row))