Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
FPC
Lazarus
Lazarus
Commits
bcb331e3
Commit
bcb331e3
authored
Dec 27, 2015
by
Željan Rikalo
🏊🏼
Browse files
Qt: use direct X11 call for transient hint since Qt's QtTool flag is buggy. issue
#29253
git-svn-id: trunk@51047 -
parent
b7b8b626
Changes
1
Hide whitespace changes
Inline
Side-by-side
lcl/interfaces/qt/qtwsforms.pp
View file @
bcb331e3
...
...
@@ -546,9 +546,9 @@ begin
APopupParent
:=
TCustomForm
(
AWinControl
).
GetRealPopupParent
;
if
(
APopupParent
<>
nil
)
then
begin
Flags
:=
Widget
.
windowFlags
;
Widget
.
setParent
(
TQtWidget
(
APopupParent
.
Handle
).
Widget
);
Widget
.
setWindowFlags
(
Flags
or
QtTool
);
{use direct X11 call instead of QtTool flag.issue #29253}
SetTransientForHint
(
Widget
.
Widget
,
TQtWidget
(
APopupParent
.
Handle
).
Widget
);
end
;
end
;
{$ENDIF}
...
...
FPC Admin account
@fpc_admin
mentioned in issue
#29253 (closed)
·
Jul 29, 2021
mentioned in issue
#29253 (closed)
mentioned in issue #29253
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment