Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d973bfb1
Commit
d973bfb1
authored
Sep 12, 2003
by
Robert Shearman
Committed by
Alexandre Julliard
Sep 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Make sure dropdown arrow is always centered.
- Add support for the TBNRF_HIDEHELP customization flag, but emit a FIXME when it isn't present.
parent
2be0fa40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
toolbar.c
dlls/comctl32/toolbar.c
+8
-2
No files found.
dlls/comctl32/toolbar.c
View file @
d973bfb1
...
...
@@ -917,7 +917,7 @@ TOOLBAR_DrawButton (HWND hwnd, TBUTTON_INFO *btnPtr, HDC hdc)
#endif
if
(
hasDropDownArrow
)
TOOLBAR_DrawArrow
(
hdc
,
rcArrow
.
left
+
1
,
rcArrow
.
top
,
COLOR_WINDOWFRAME
);
TOOLBAR_DrawArrow
(
hdc
,
rcArrow
.
left
+
1
,
rcArrow
.
top
+
(
rcArrow
.
bottom
-
rcArrow
.
top
-
ARROW_HEIGHT
)
/
2
,
COLOR_WINDOWFRAME
);
if
(
btnPtr
->
bHot
)
{
HIMAGELIST
himlHot
=
GETHOTIMAGELIST
(
infoPtr
,
...
...
@@ -1704,7 +1704,13 @@ TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
if
(
TOOLBAR_SendNotify
((
NMHDR
*
)
&
nmtb
,
infoPtr
,
TBN_INITCUSTOMIZE
)
==
TBNRF_HIDEHELP
)
{
FIXME
(
"TBNRF_HIDEHELP not supported
\n
"
);
TRACE
(
"TBNRF_HIDEHELP requested
\n
"
);
ShowWindow
(
GetDlgItem
(
hwnd
,
IDC_HELP_BTN
),
SW_HIDE
);
}
else
{
FIXME
(
"Help button not implemented
\n
"
);
EnableWindow
(
GetDlgItem
(
hwnd
,
IDC_HELP_BTN
),
FALSE
);
}
/* add items to 'toolbar buttons' list and check if removable */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment