mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-08 12:13:41 +02:00
Interactive manipulation of PCell parameters on editoptions page.
This commit is contained in:
@@ -2185,8 +2185,8 @@ public:
|
||||
menu_entries.push_back (lay::separator ("zoom_group", at));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_fit", "zoom_fit", at, tl::to_string (QObject::tr ("Zoom Fit(F2)"))));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_fit_sel", "zoom_fit_sel", at, tl::to_string (QObject::tr ("Zoom Fit Selection(Shift+F2)"))));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_in", "zoom_in", at, tl::to_string (QObject::tr ("Zoom In(Return)"))));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_out", "zoom_out", at, tl::to_string (QObject::tr ("Zoom Out(Shift+Return)"))));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_in", "zoom_in", at, tl::to_string (QObject::tr ("Zoom In(Ctrl++)"))));
|
||||
menu_entries.push_back (lay::menu_item ("cm_zoom_out", "zoom_out", at, tl::to_string (QObject::tr ("Zoom Out(Ctrl+-)"))));
|
||||
/* disabled because that interferes with the use of the arrow keys for moving the selection
|
||||
MenuLayoutEntry::separator ("pan_group");
|
||||
menu_entries.push_back (lay::menu_item ("cm_pan_up", "pan_up", at, tl::to_string (QObject::tr ("Pan Up(Up)"))));
|
||||
|
||||
@@ -590,7 +590,7 @@ LibrarySelectionComboBox::set_technology_filter (const std::string &tech, bool e
|
||||
void
|
||||
LibrarySelectionComboBox::update_list ()
|
||||
{
|
||||
blockSignals (true);
|
||||
bool wasBlocked = blockSignals (true);
|
||||
|
||||
db::Library *lib = current_library ();
|
||||
|
||||
@@ -620,7 +620,7 @@ LibrarySelectionComboBox::update_list ()
|
||||
|
||||
set_current_library (lib);
|
||||
|
||||
blockSignals (false);
|
||||
blockSignals (wasBlocked);
|
||||
}
|
||||
|
||||
LibrarySelectionComboBox::~LibrarySelectionComboBox ()
|
||||
|
||||
Reference in New Issue
Block a user