mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-22 17:08:11 +02:00
Qt: bugfix in TQtWidgetSet.drawText()
git-svn-id: trunk@16598 -
This commit is contained in:
parent
dbf5d01d9b
commit
b15a1073c9
@ -1210,10 +1210,10 @@ begin
|
|||||||
if Flags and DT_SINGLELINE <> 0 then
|
if Flags and DT_SINGLELINE <> 0 then
|
||||||
F := F or QtTextSingleLine;
|
F := F or QtTextSingleLine;
|
||||||
|
|
||||||
if Flags and DT_NOPREFIX = 0 then
|
if Flags and DT_NOPREFIX <> 0 then
|
||||||
F := F or QtTextShowMnemonic;
|
F := F or QtTextShowMnemonic;
|
||||||
|
|
||||||
if Flags and DT_NOCLIP = 0 then
|
if Flags and DT_NOCLIP <> 0 then
|
||||||
F := F or QtTextDontClip;
|
F := F or QtTextDontClip;
|
||||||
|
|
||||||
if Flags and DT_EXPANDTABS <> 0 then
|
if Flags and DT_EXPANDTABS <> 0 then
|
||||||
|
Loading…
Reference in New Issue
Block a user