mirror of https://github.com/KLayout/klayout.git
Merge pull request #1730 from KLayout/bugfix/issue-1709
Fixing the specific problem of issue #1709
This commit is contained in:
commit
e63d6a25d9
|
|
@ -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