Skip to content

Commit f4300df

Browse files
committed
dont translate names in customization tree, fixes #8039
1 parent 6d9cec5 commit f4300df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/qgscustomization.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,8 @@ QTreeWidgetItem * QgsCustomizationDialog::createTreeItemWidgets()
324324
return NULL;
325325
}
326326
QTreeWidgetItem *myItem = readWidgetsXmlNode( myRoot );
327-
myItem->setData( 0, Qt::DisplayRole, tr( "Widgets" ) );
327+
// Do not translate "Widgets", currently it is also used as path
328+
myItem->setData( 0, Qt::DisplayRole, "Widgets" );
328329

329330
return myItem;
330331
}

0 commit comments

Comments
 (0)