fixes with path map application; further completeness of file drop completion menu; fix of set-next-statement

This commit is contained in:
Ryan Fleury
2024-10-10 12:03:11 -07:00
parent ba5f2021f6
commit 0d50157239
2 changed files with 81 additions and 41 deletions
-1
View File
@@ -543,7 +543,6 @@ os_w32_wnd_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
HDROP drop = (HDROP)wParam;
POINT drop_pt = {0};
DragQueryPoint(drop, &drop_pt);
ScreenToClient(window->hwnd, &drop_pt);
U64 num_files_dropped = DragQueryFile(drop, 0xffffffff, 0, 0);
OS_Event *event = os_w32_push_event(OS_EventKind_FileDrop, window);
event->pos = v2f32((F32)drop_pt.x, (F32)drop_pt.y);