mirror of
https://github.com/leozide/leocad
synced 2025-01-28 19:58:12 +01:00
Fixed typo in About Dialog.
This commit is contained in:
parent
8c990e7fb7
commit
9b5d6a18df
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ lcQAboutDialog::lcQAboutDialog(QWidget *parent, void *data) :
|
|||
QString VertexBufferObject = GL_HasVertexBufferObject() ? tr("Supported") : tr("Not supported");
|
||||
QString FramebufferObjectARB = GL_HasFramebufferObjectARB() ? tr("Supported") : tr("Not supported");
|
||||
QString FramebufferObjectEXT = GL_HasFramebufferObjectEXT() ? tr("Supported") : tr("Not supported");
|
||||
QString Anisotropic = GL_SupportsAnisotropic ? tr("Supported (max %d)").arg(QString::number(GL_MaxAnisotropy)) : tr("Not supported");
|
||||
QString Anisotropic = GL_SupportsAnisotropic ? tr("Supported (max %1)").arg(GL_MaxAnisotropy) : tr("Not supported");
|
||||
QString Extensions = ExtensionsFormat.arg(VertexBufferObject, FramebufferObjectARB, FramebufferObjectEXT, Anisotropic);
|
||||
|
||||
ui->info->setText(Version + Buffers + Extensions);
|
||||
|
|
Loading…
Add table
Reference in a new issue