summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-09-09 19:15:10 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-09-09 19:15:10 -0400
commit3f95b5ac194d680f01af026482bc999c61ad036c (patch)
tree635d3d93c88a2f1e0b8f98371269369f3b0d14f4 /gtk2_ardour/editor_ops.cc
parent673e58072642d2b9ace8de611a5c18a17588af6c (diff)
closing the normalize dialog should not run normalize (#7016)
Diffstat (limited to 'gtk2_ardour/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index 86ff4cd045..079af7de59 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -5049,7 +5049,7 @@ Editor::normalize_region ()
NormalizeDialog dialog (rs.size() > 1);
- if (dialog.run () == RESPONSE_CANCEL) {
+ if (dialog.run () != RESPONSE_ACCEPT) {
return;
}