Merge pull request #1730 from KLayout/bugfix/issue-1709

Fixing the specific problem of issue #1709
This commit is contained in:
Matthias Köfferlein 2024-06-06 21:59:25 +02:00 committed by GitHub
commit e63d6a25d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1341,7 +1341,7 @@ RedrawThreadWorker::draw_text_layer (bool drawing_context, db::cell_index_type c
} else {
bool text_simplified = m_text_lazy_rendering && (dbbox_tot.width () <= 8.0 || dbbox_tot.height () <= 8.0);
bool text_simplified = m_text_lazy_rendering && dbbox_tot.width () <= 8.0 && dbbox_tot.height () <= 8.0;
const db::Shapes &shapes = cell.shapes (m_layer);