Fixing the specific problem of issue #1709

This commit is contained in:
Matthias Koefferlein 2024-06-04 20:34:45 +02:00
parent 910f0824e0
commit a3d226d99f
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);