Skip to content

Commit

Permalink
dont translate names in customization tree, fixes #8039
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Jun 12, 2013
1 parent 6d9cec5 commit f4300df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/qgscustomization.cpp
Expand Up @@ -324,7 +324,8 @@ QTreeWidgetItem * QgsCustomizationDialog::createTreeItemWidgets()
return NULL;
}
QTreeWidgetItem *myItem = readWidgetsXmlNode( myRoot );
myItem->setData( 0, Qt::DisplayRole, tr( "Widgets" ) );
// Do not translate "Widgets", currently it is also used as path
myItem->setData( 0, Qt::DisplayRole, "Widgets" );

return myItem;
}
Expand Down

0 comments on commit f4300df

Please sign in to comment.