diff --git a/slsDetectorGui/src/qTabDataOutput.cpp b/slsDetectorGui/src/qTabDataOutput.cpp index 3a47be74c..1e8be365a 100644 --- a/slsDetectorGui/src/qTabDataOutput.cpp +++ b/slsDetectorGui/src/qTabDataOutput.cpp @@ -540,11 +540,14 @@ void qTabDataOutput::Refresh(){ if(myDet->getBadChannelCorrection()) chkDiscardBad->setChecked(true); - if(myDet->setReceiverOnline()==slsDetectorDefs::ONLINE_FLAG) + if(myDet->setReceiverOnline()==slsDetectorDefs::ONLINE_FLAG){ btnOutputBrowse->setEnabled(false); - else + btnOutputBrowse->setToolTip("This button is disabled as receiver PC is different from " + "client PC and hence different directory structures.

" + dispOutputDir->toolTip()); + }else{ btnOutputBrowse->setEnabled(true); - + btnOutputBrowse->setToolTip(dispOutputDir->toolTip()); + } #ifdef VERBOSE cout << "**Updated DataOutput Tab" << endl << endl;