From 2ae6e2dc98136e1336fb58bedd0fb9729b1c3f86 Mon Sep 17 00:00:00 2001 From: Rene Gassmoeller Date: Tue, 28 Mar 2017 14:33:44 -0600 Subject: [PATCH] Remove tooltip --- xml_parameter_reader.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/xml_parameter_reader.cpp b/xml_parameter_reader.cpp index a608ea4..29d1a7c 100644 --- a/xml_parameter_reader.cpp +++ b/xml_parameter_reader.cpp @@ -176,13 +176,6 @@ namespace dealii { QString documentation = xml.readElementText(); // store it parent->setText(3, documentation); - - if (!documentation.isEmpty()) // if there is a documentation, - { - parent->setToolTip(0, "Documentation: " + documentation); // set Documentation as ToolTip for both columns - parent->setToolTip(1, "Documentation: " + documentation); - parent->setStatusTip(0, "Documentation: " + documentation); // and as StatusTip for the first column also - }; } else if (xml.isStartElement() && xml.name() == "pattern") // if it is { @@ -196,6 +189,7 @@ namespace dealii parent->setText(5, pattern_description); // show the type and default // in the StatusLine + parent->setStatusTip(0, "Type: " + pattern_description + " Default: " + parent->text(2)); parent->setStatusTip(1, "Type: " + pattern_description + " Default: " + parent->text(2)); // in order to store values as correct data types, -- 2.39.5