mirror of
https://github.com/leozide/leocad
synced 2025-01-17 18:11:42 +01:00
commit
0cfc9f7683
3 changed files with 8 additions and 6 deletions
|
@ -371,7 +371,7 @@ void lcPartSelectionListModel::DrawPreview(int InfoIndex)
|
|||
Scene.SetAllowWireframe(false);
|
||||
Scene.Begin(ViewMatrix);
|
||||
|
||||
Info->AddRenderMeshes(Scene, lcMatrix44Identity(), mColorIndex, lcRenderMeshState::NORMAL, true);
|
||||
Info->AddRenderMeshes(Scene, lcMatrix44Identity(), mColorIndex, lcRenderMeshState::NORMAL, false);
|
||||
|
||||
Scene.End();
|
||||
|
||||
|
|
|
@ -932,7 +932,9 @@ void lcQPropertiesTree::SetPiece(const lcArray<lcObject*>& Selection, lcObject*
|
|||
partColor->setText(1, color->Name);
|
||||
partColor->setData(0, PropertyValueRole, ColorIndex);
|
||||
|
||||
partID->setText(1, Info ? Info->m_strDescription : QString());
|
||||
QString text = Info ? Info->m_strDescription : QString();
|
||||
partID->setText(1, text);
|
||||
partID->setToolTip(1, text);
|
||||
partID->setData(0, PropertyValueRole, qVariantFromValue((void*)Info));
|
||||
}
|
||||
|
||||
|
|
|
@ -1089,7 +1089,7 @@
|
|||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="9"/>
|
||||
<source>&New</source>
|
||||
<translation type="unfinished">&Neu</translation>
|
||||
<translation>&Neu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="16"/>
|
||||
|
@ -1477,7 +1477,7 @@
|
|||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="555"/>
|
||||
<source>Relative Rotation</source>
|
||||
<translation>relative Drehung</translation>
|
||||
<translation>Relative Drehung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="562"/>
|
||||
|
@ -1865,7 +1865,7 @@
|
|||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="1199"/>
|
||||
<source>Move to New Model...</source>
|
||||
<translation>Neues Modell bewegen…</translation>
|
||||
<translation>In Neues Modell verschieben…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../common/lc_commands.cpp" line="1206"/>
|
||||
|
@ -5495,7 +5495,7 @@ GL_EXT_texture_filter_anisotropic extension: %5
|
|||
<message>
|
||||
<location filename="../qt/lc_renderdialog.ui" line="29"/>
|
||||
<source>Settings</source>
|
||||
<translation>Einstellwerte</translation>
|
||||
<translation>Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qt/lc_renderdialog.ui" line="41"/>
|
||||
|
|
Loading…
Reference in a new issue