mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
fix for bug 187434 - Content Assist Advanced pref page reports the wrong keyboard shortcut for DBCS languages
This commit is contained in:
parent
16a0c206f8
commit
0b8a5e522c
1 changed files with 1 additions and 1 deletions
|
@ -676,7 +676,7 @@ final class CodeAssistAdvancedConfigurationBlock extends OptionsConfigurationBlo
|
|||
for (int i= 0; i < bindings.length; i++) {
|
||||
Binding binding= bindings[i];
|
||||
if (command.equals(binding.getParameterizedCommand())) {
|
||||
TriggerSequence triggers= binding.getTriggerSequence();
|
||||
TriggerSequence triggers= bindingSvc.getBestActiveBindingFor(command.getId());
|
||||
return triggers.format();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue