You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ListView::column_width() seems to be missing the column index parameter. This in turn makes it always request the width of the first column (index 0), when the underlying API call lets the user choose which column to query.
Issue
ListView::column_width()
seems to be missing the column index parameter. This in turn makes it always request the width of the first column (index 0), when the underlying API call lets the user choose which column to query.Relevant Win32 API reference can be found here.
Fix
Add a
column_index
parameter toListView::column_width()
and pass it as thewParam
of thesend_message
call.The text was updated successfully, but these errors were encountered: