mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2025-02-01 04:05:47 +01:00
Fixes #34
This commit is contained in:
parent
2635e4cee7
commit
7ba90b3772
@ -205,7 +205,15 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
|
||||
if (p)
|
||||
{
|
||||
p--;
|
||||
*p = 0;
|
||||
if (p == L' ')
|
||||
{
|
||||
*p = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
p++;
|
||||
*p = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
rcText.bottom += GUI_CAPTION_LINE_HEIGHT - dwLineHeight;
|
||||
|
@ -258,7 +258,15 @@ DWORD ShowLauncherTipContextMenu(
|
||||
if (p)
|
||||
{
|
||||
p--;
|
||||
*p = 0;
|
||||
if (p == L' ')
|
||||
{
|
||||
*p = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
p++;
|
||||
*p = 0;
|
||||
}
|
||||
}
|
||||
|
||||
MENUITEMINFOW menuInfo;
|
||||
|
Loading…
x
Reference in New Issue
Block a user