Skip to content

Commit

Permalink
bugfix: some IDA 7 users (AUTOIMPORT_COMPAT_IDA695=NO) could not save…
Browse files Browse the repository at this point in the history
… compositions
  • Loading branch information
gaasedelen committed Dec 1, 2017
1 parent d39f07c commit 58f1260
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugin/lighthouse/composer/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,14 +582,14 @@ def _accept_composition(self):
# composition name
#

coverage_name = idaapi.askstr(
0,
str("COMP_%s" % self.text),
"Save composition as..."
ok, coverage_name = prompt_string(
"Composition Name:",
"Please enter a name for this composition",
"COMP_%s" % self.text
)

# the user did not enter a coverage name or hit cancel - abort the save
if not coverage_name:
if not (ok and coverage_name):
return

#
Expand Down

0 comments on commit 58f1260

Please sign in to comment.