From: Juergen Spitzmueller Date: Wed, 1 Aug 2018 13:17:46 +0000 (+0200) Subject: InsetInfo: use localized shortcuts X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3222 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=abaccece15a3b7c23588b5257719ee0af4977e29;p=features.git InsetInfo: use localized shortcuts --- diff --git a/src/insets/InsetInfo.cpp b/src/insets/InsetInfo.cpp index c0e18eaca5..a0a879856b 100644 --- a/src/insets/InsetInfo.cpp +++ b/src/insets/InsetInfo.cpp @@ -510,9 +510,9 @@ void InsetInfo::updateBuffer(ParIterator const & it, UpdateType utype) { break; } if (type_ == SHORTCUT_INFO) - setText(bindings.begin()->print(KeySequence::Portable), guilang); + setText(bindings.begin()->print(KeySequence::ForGui), guilang); else - setText(theTopLevelKeymap().printBindings(func, KeySequence::Portable), guilang); + setText(theTopLevelKeymap().printBindings(func, KeySequence::ForGui), guilang); force_ltr_ = !guilang->rightToLeft() && !lang->rightToLeft(); break; }