comctl32: Allow label edit only if treeview style allows editing.
This commit is contained in:
parent
fccee5d20c
commit
1196aed33f
|
@ -3810,6 +3810,9 @@ TREEVIEW_EditLabel(TREEVIEW_INFO *infoPtr, HTREEITEM hItem)
|
||||||
TEXTMETRICW textMetric;
|
TEXTMETRICW textMetric;
|
||||||
|
|
||||||
TRACE("%p %p\n", hwnd, hItem);
|
TRACE("%p %p\n", hwnd, hItem);
|
||||||
|
if (!(infoPtr->dwStyle & TVS_EDITLABELS))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
if (!TREEVIEW_ValidItem(infoPtr, hItem))
|
if (!TREEVIEW_ValidItem(infoPtr, hItem))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue