Skip to content

Commit 6746dad

Browse files
author
Matthias Koefferlein
committed
Fixed display of markers for ghost cells in viewer mode
1 parent 19dc5e8 commit 6746dad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/edt/edt/edtService.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ Service::transient_select (const db::DPoint &pos)
12081208
// In viewer mode, individual instances of arrays can be selected. Since that is not supported by
12091209
// InstanceMarker, we just indicate the individual instance's bounding box.
12101210
lay::Marker *marker = new lay::Marker (view (), r->cv_index ());
1211-
db::box_convert<db::CellInst> bc (cv->layout ());
1211+
db::box_convert<db::CellInst, false> bc (cv->layout ());
12121212
marker->set (bc (r->back ().inst_ptr.cell_inst ().object ()), gt * r->back ().inst_ptr.cell_inst ().complex_trans (*r->back ().array_inst), tv);
12131213
marker->set_vertex_size (view ()->default_transient_marker_vertex_size ());
12141214
marker->set_line_width (view ()->default_transient_marker_line_width ());
@@ -1806,7 +1806,7 @@ Service::do_selection_to_view ()
18061806
if (r->seq () > 0 && m_indicate_secondary_selection) {
18071807
marker->set_dither_pattern (3);
18081808
}
1809-
db::box_convert<db::CellInst> bc (cv->layout ());
1809+
db::box_convert<db::CellInst, false> bc (cv->layout ());
18101810
marker->set (bc (r->back ().inst_ptr.cell_inst ().object ()), gt * r->back ().inst_ptr.cell_inst ().complex_trans (*r->back ().array_inst), *tv_list);
18111811
m_markers.push_back (std::make_pair (r.operator-> (), marker));
18121812

0 commit comments

Comments
 (0)