diff options
-rw-r--r-- | lspaneeditor.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lspaneeditor.cpp b/lspaneeditor.cpp index 49939ec..1f6ba11 100644 --- a/lspaneeditor.cpp +++ b/lspaneeditor.cpp @@ -437,7 +437,11 @@ void LSPaneEditor::handlePicColourClicked() { if (index == -1) return; - QColor newcol = QColorDialog::getColor(m_picture->vtxColours[index], this); + QColor newcol = QColorDialog::getColor( + m_picture->vtxColours[index], + this, + "Choose a Vertex Colour", + QColorDialog::ShowAlphaChannel); if (newcol.isValid()) { m_picture->vtxColours[index] = newcol; |