From 5805779af360c1b0c9a94c12454fe94850099ab4 Mon Sep 17 00:00:00 2001 From: rnv Date: Wed, 22 Sep 2010 14:06:01 +0000 Subject: [PATCH] Fix for the bug 20893 (http://bugtracker.opencascade.com/show_bug.cgi?id=20893): WinTC5.1.4 Screen tip (bubble help) does not appear, when any dialog box is opened and active. --- src/Qtx/QtxMainWindow.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Qtx/QtxMainWindow.cxx b/src/Qtx/QtxMainWindow.cxx index 75abd996f..d3cb76621 100644 --- a/src/Qtx/QtxMainWindow.cxx +++ b/src/Qtx/QtxMainWindow.cxx @@ -110,6 +110,9 @@ QtxMainWindow::QtxMainWindow( QWidget* parent, Qt::WindowFlags f ) myMenuBar( 0 ), myStatusBar( 0 ) { + //rnv: Enables tooltips for inactive windows. + //rnv: For details see http://bugtracker.opencascade.com/show_bug.cgi?id=20893 + setAttribute(Qt::WA_AlwaysShowToolTips); } /*! -- 2.39.2