mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
fix segfault in preferences dialog caused by incorrect use of S_(). i've checked all other uses in gtk2_ardour and cleared them
git-svn-id: svn://localhost/ardour2/branches/3.0@10839 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
01acbbea80
commit
6fe7e0dea1
1 changed files with 3 additions and 1 deletions
|
|
@ -310,7 +310,9 @@ public:
|
|||
|
||||
for (int x = 0; modifiers[x].name; ++x) {
|
||||
if (modifiers[x].modifier == Keyboard::edit_modifier ()) {
|
||||
_edit_modifier_combo.set_active_text (S_(modifiers[x].name));
|
||||
string lookup_str = "key|";
|
||||
lookup_str += modifiers[x].name;
|
||||
_edit_modifier_combo.set_active_text (S_(lookup_str.c_str()));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue