From ad0606c69ba4a92800f6b75cde3f630c9782a075 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Mon, 25 Aug 2025 16:41:09 +0200 Subject: [PATCH] Mesh: Gmsh dropdown to sentence case --- src/Mod/Mesh/Gui/RemeshGmsh.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Mesh/Gui/RemeshGmsh.cpp b/src/Mod/Mesh/Gui/RemeshGmsh.cpp index 1e6f6a8121..6242b8c3d1 100644 --- a/src/Mod/Mesh/Gui/RemeshGmsh.cpp +++ b/src/Mod/Mesh/Gui/RemeshGmsh.cpp @@ -101,9 +101,9 @@ GmshWidget::GmshWidget(QWidget* parent, Qt::WindowFlags fl) d->ui.method->addItem(QStringLiteral("Delaunay"), static_cast(Delaunay)); d->ui.method->addItem(tr("Frontal"), static_cast(FrontalDelaunay)); d->ui.method->addItem(QStringLiteral("BAMG"), static_cast(BAMG)); - d->ui.method->addItem(tr("Frontal Quad"), static_cast(FrontalDelaunayForQuads)); + d->ui.method->addItem(tr("Frontal quad"), static_cast(FrontalDelaunayForQuads)); d->ui.method->addItem(tr("Parallelograms"), static_cast(PackingOfParallelograms)); - d->ui.method->addItem(tr("Quasi-structured Quad"), static_cast(QuasiStructuredQuad)); + d->ui.method->addItem(tr("Quasi-structured quad"), static_cast(QuasiStructuredQuad)); } GmshWidget::~GmshWidget()