Skip to content
Permalink
Browse files
bugfix: some IDA 7 users (AUTOIMPORT_COMPAT_IDA695=NO) could not save…
… compositions
  • Loading branch information
gaasedelen committed Dec 1, 2017
1 parent d39f07c commit 58f1260
Showing 1 changed file with 5 additions and 5 deletions.
@@ -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

#

0 comments on commit 58f1260

Please sign in to comment.