diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-11-11 12:05:17 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-11-12 11:04:00 +0200 |
commit | d74d11783f8dfcb1e0bce8717ad20460c6a863fb (patch) | |
tree | 71d2f5ef90952845c2c1d0fef25ef8fbb658ee30 /src/corelib/x11 | |
parent | f603a1963f8788926c6c6d84925abb3f153062df (diff) | |
download | fpGUI-d74d11783f8dfcb1e0bce8717ad20460c6a863fb.tar.xz |
Added "call stack debugging" for internal use.
It's disabled by default. Enabling can be done via project level
or inside each unit at the beginning of such units.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r-- | src/corelib/x11/fpg_x11.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/x11/fpg_x11.pas b/src/corelib/x11/fpg_x11.pas index 9d64599f..667d4f63 100644 --- a/src/corelib/x11/fpg_x11.pas +++ b/src/corelib/x11/fpg_x11.pas @@ -2114,7 +2114,7 @@ begin mask := 0; if (FWindowType in [wtPopup]) or (waX11SkipWMHints in FWindowAttributes) then begin - attr.Override_Redirect := TBool(True); + attr.Override_Redirect := 1; mask := CWOverrideRedirect; end; |