summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-09 21:58:45 +0100
committerRobin Gareus <robin@gareus.org>2019-03-09 21:59:16 +0100
commit4d695eaf51b033502ae6d81919a492e230b50438 (patch)
tree66b0c1a7608a55745d8547bf0a870dbd892f52c7 /libs/gtkmm2ext
parent65fc37afb7f4b8f1c35a326c44effdf63eb3327d (diff)
Work-around crash when printing bindings
(ardour -b or Keyboard-Shortcuts > Print Bindings) see also https://github.com/Ardour/ardour/pull/447
Diffstat (limited to 'libs/gtkmm2ext')
-rw-r--r--libs/gtkmm2ext/actions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gtkmm2ext/actions.cc b/libs/gtkmm2ext/actions.cc
index 3cb007e04f..da5aa80fe7 100644
--- a/libs/gtkmm2ext/actions.cc
+++ b/libs/gtkmm2ext/actions.cc
@@ -544,8 +544,8 @@ ActionManager::get_all_actions (std::vector<std::string>& paths,
} else {
keys.push_back (string());
}
- }
+#else
+ keys.push_back (string());
#endif
-
}
}