mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-07 11:31:08 +02:00
Fixing the specific problem of issue #1709
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user