We're trying to get 5133 fixed for the RiverWare 6.1 release (asap). The problem with the use of GenListView in QtRpl/RplArgEditDlg is that GenListView:: stopRename (bool clear) is calling blockSignals (true) on the _editor widget -- to prevent recursive reentry (according to a comment there), and that is preventing the edit completion from being processed in the reported scenarios. I recoded this to use a _stopRename_inProgress instance flag (bool) to prevent reentry -- and added a NULL check for _edititem in GenListView::lineEditFinished, which became necessary because of additional processing. You can see the changes on Solaris in this area: /projects/riverware/staff/philw/sol62a/QtUtils/GenListView.hpp /projects/riverware/staff/philw/sol62a/QtUtils/GenListView.cpp ... including some output debug which needs to be removed or commented out. This seems to work, but I'm going to need to check the incell editing of all the other existing GenListViews -- all in DbDmi. Could you be on hand to test those too? (I haven't yet confirmed that all of these are still in the build): DbDmi/DatasetDlg.Cfg.cpp DbDmi/DatasetDlg.Cfg.hpp DbDmi/DbDmiDlg.cpp DbDmi/DbDmiDlg.hpp DbDmi/DbDmiDlgBase.ui DbDmi/DssDatasetDlg.cpp DbDmi/DssDatasetDlg.hpp DbDmi/DssDatasetDlgBase.ui DbDmi/NameMapDlg.cpp DbDmi/NameMapDlg.hpp DbDmi/NameMapDlgBase.ui Thanks, Phil