Skip to content
Snippets Groups Projects
Commit 37e7d129 authored by Marco Biasini's avatar Marco Biasini
Browse files

temporarily disable block-level background colors for Qt versions 4.7 and higher

This avoids the crash in BZDNG-193. Hopefully we will be able to reverse it,
once the trolltech guys fix the bug upstream.
parent 0ede2798
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,9 @@ void PythonSyntaxHighlighter::highlightBlock(const QString& text_block) { ...@@ -86,7 +86,9 @@ void PythonSyntaxHighlighter::highlightBlock(const QString& text_block) {
} else if (currentBlockState() & BLOCKTYPE_CODE) { } else if (currentBlockState() & BLOCKTYPE_CODE) {
base_state=BLOCKTYPE_CODE; base_state=BLOCKTYPE_CODE;
} }
#if QT_VERSION < 0x040700
cursor.setBlockFormat(block_formats_[static_cast<BlockType>(base_state)]); cursor.setBlockFormat(block_formats_[static_cast<BlockType>(base_state)]);
#endif
if (currentBlockState() & BLOCKTYPE_BLOCKEDIT || if (currentBlockState() & BLOCKTYPE_BLOCKEDIT ||
currentBlockState() & BLOCKTYPE_ACTIVE || currentBlockState() & BLOCKTYPE_ACTIVE ||
currentBlockState() & BLOCKTYPE_CODE) { currentBlockState() & BLOCKTYPE_CODE) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment