Skip to content
Snippets Groups Projects
Commit 87784e82 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: avoid cursor to be sent to end after editing OutputFilenameParameter

parent 1afd5a0d
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,8 @@ void QtWidgetOutputFilenameParameter::DoUpdateGUI()
{
// Update the lineEdit
QString text( m_FilenameParam->GetValue().c_str() );
m_Input->setText(text);
if (text != m_Input->text())
m_Input->setText(text);
}
void QtWidgetOutputFilenameParameter::DoCreateWidget()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment