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