Commit 616cffb8 authored by Oleg Prokhorov's avatar Oleg Prokhorov Committed by Alexandre Julliard

Removed DT_NOCLIP format flag.

parent b64c89c5
...@@ -453,19 +453,19 @@ static void STATIC_PaintTextfn( HWND hwnd, HDC hdc, DWORD style ) ...@@ -453,19 +453,19 @@ static void STATIC_PaintTextfn( HWND hwnd, HDC hdc, DWORD style )
switch (style & SS_TYPEMASK) switch (style & SS_TYPEMASK)
{ {
case SS_LEFT: case SS_LEFT:
wFormat = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP; wFormat = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK;
break; break;
case SS_CENTER: case SS_CENTER:
wFormat = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP; wFormat = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK;
break; break;
case SS_RIGHT: case SS_RIGHT:
wFormat = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP; wFormat = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK;
break; break;
case SS_SIMPLE: case SS_SIMPLE:
wFormat = DT_LEFT | DT_SINGLELINE | DT_VCENTER | DT_NOCLIP; wFormat = DT_LEFT | DT_SINGLELINE | DT_VCENTER;
break; break;
case SS_LEFTNOWORDWRAP: case SS_LEFTNOWORDWRAP:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment