Interactive manipulation of PCell parameters on editoptions page.

This commit is contained in:
Matthias Koefferlein
2020-08-13 01:20:14 +02:00
parent b8c33f1b59
commit e12746526f
9 changed files with 257 additions and 99 deletions
@@ -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)"))));
+2 -2
View File
@@ -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 ()