diff --git a/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetFileSelection.cxx b/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetFileSelection.cxx index 79824e911fc9d490794469ce16ee6141bca9dba0..6bd838e8a0c8acc1a64d0c7b355448390bd05afb 100644 --- a/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetFileSelection.cxx +++ b/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetFileSelection.cxx @@ -101,6 +101,7 @@ void QtWidgetFileSelection::DoCreateWidget() m_Input = new QLabel; m_Input->setFrameShape(QFrame::Box); + m_Input->setText(tr("Drag and drop a dataset here")); m_HLayout->addWidget(m_Input); // Set up input text edit diff --git a/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetInputImageParameter.cxx b/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetInputImageParameter.cxx index 75afb64e71bc4c40862402f79c30e26ddf74987c..1b205e29d927fc4c70db90b0332dbd09c314c1f8 100644 --- a/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetInputImageParameter.cxx +++ b/Code/Common/ApplicationsWrapper/mvdWrapperQtWidgetInputImageParameter.cxx @@ -100,6 +100,7 @@ void QtWidgetInputImageParameter::DoCreateWidget() // Set up input QLabel m_Input->setToolTip( m_InputImageParam->GetDescription() ); m_Input->setFrameShape(QFrame::Box); + m_Input->setText(tr("Drag and drop a dataset here")); // TODO : QLabel does not have signals, remove connections connect( this, SIGNAL(textChanged(const QString&)), this, SLOT(SetFileName(const QString&)) );