Skip to content
Snippets Groups Projects
Commit 6313aace authored by Dirk Wilden's avatar Dirk Wilden
Browse files

small bug displaying of keyBindings

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@4014 383ad7c9-94d9-4d36-a494-682f7c89f535
parent e6d161fd
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ void OptionsWidget::showEvent ( QShowEvent * /*event*/ ) {
row << coreKeys_[i].description << (keyString).left(keyString.size()-1);
}else{
QString keyString = QKeySequence( key + coreKeys_[i].modifiers ).toString();
row << coreKeys_[i].description << (keyString).left(keyString.size()-1);
row << coreKeys_[i].description << keyString;
}
keys.append(new QTreeWidgetItem(core, row));
......@@ -200,7 +200,7 @@ void OptionsWidget::showEvent ( QShowEvent * /*event*/ ) {
row << plugins_[i].keys[k].description << (keyString).left(keyString.size()-1);
}else{
QString keyString = QKeySequence( key + plugins_[i].keys[k].modifiers ).toString();
row << plugins_[i].keys[k].description << (keyString).left(keyString.size()-1);
row << plugins_[i].keys[k].description << keyString;
}
keys.append(new QTreeWidgetItem(plugins[i-off], row));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment