mirror of https://github.com/KLayout/klayout.git
Bugfix: 'Delete Layer' was mapped incorrectly to 'Edit Layer Specification'
This commit is contained in:
parent
0066381b40
commit
73521bc0dc
|
|
@ -6815,7 +6815,7 @@ LayoutView::menu_activated (const std::string &symbol)
|
||||||
}
|
}
|
||||||
} else if (symbol == "cm_delete_layer") {
|
} else if (symbol == "cm_delete_layer") {
|
||||||
if (active_cellview_index () >= 0) {
|
if (active_cellview_index () >= 0) {
|
||||||
cm_edit_layer ();
|
cm_delete_layer ();
|
||||||
}
|
}
|
||||||
} else if (symbol == "cm_clear_layer") {
|
} else if (symbol == "cm_clear_layer") {
|
||||||
if (active_cellview_index () >= 0) {
|
if (active_cellview_index () >= 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue