mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-10 19:07:38 +01:00
win32: don't try to draw tooltip text in windows XP using themes - XP themes does not know how to draw it (bug #0021386)
git-svn-id: trunk@35621 -
This commit is contained in:
parent
cca0312b77
commit
ba608daeeb
@ -485,8 +485,16 @@ end;
|
||||
procedure TWin32ThemeServices.DrawText(ACanvas: TPersistent;
|
||||
Details: TThemedElementDetails; const S: String; R: TRect; Flags,
|
||||
Flags2: Cardinal);
|
||||
|
||||
function NotImplementedInXP: Boolean; inline;
|
||||
begin
|
||||
Result :=
|
||||
((Details.Element = teTreeview) and (Details.Part = TVP_TREEITEM)) or
|
||||
(Details.Element = teToolTip);
|
||||
end;
|
||||
|
||||
begin
|
||||
if (Details.Element = teTreeview) and (Details.Part = TVP_TREEITEM) and (WindowsVersion < wvVista) then
|
||||
if NotImplementedInXP and (WindowsVersion < wvVista) then
|
||||
begin
|
||||
inherited;
|
||||
Exit;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user