mirror of https://github.com/KLayout/klayout.git
Fixing the specific problem of issue #1709
This commit is contained in:
parent
910f0824e0
commit
a3d226d99f
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue