From 16873e1ebf26905434a042d4b9ce88a78fdb2912 Mon Sep 17 00:00:00 2001 From: Anton Piccardo-Selg <anton.piccardo-selg@tessella.com> Date: Thu, 22 Oct 2015 16:24:06 +0100 Subject: [PATCH] Refs #13314 Fix wrong tool tip --- MantidQt/CustomInterfaces/src/SANSRunWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MantidQt/CustomInterfaces/src/SANSRunWindow.cpp b/MantidQt/CustomInterfaces/src/SANSRunWindow.cpp index 9966f61bcdd..c24b322e20f 100644 --- a/MantidQt/CustomInterfaces/src/SANSRunWindow.cpp +++ b/MantidQt/CustomInterfaces/src/SANSRunWindow.cpp @@ -4698,7 +4698,8 @@ void SANSRunWindow::initQResolutionSettings() { m_uiForm.q_resolution_delta_r_input->setToolTip(deltaR); m_uiForm.q_resolution_delta_r_label->setToolTip(deltaR); - // Set the ToolTip for w1 const QString w1("The width of the first aperture in mm."); + // Set the ToolTip for w1 + const QString w1("The width of the first aperture in mm."); m_uiForm.q_resolution_w1_input->setToolTip(w1); m_uiForm.q_resolution_w1_label->setToolTip(w1); -- GitLab