raddbg icon building/embedding/loading

This commit is contained in:
Ryan Fleury
2024-01-21 22:21:41 -08:00
parent 89c5d22f7f
commit 27deda390f
5 changed files with 11 additions and 4 deletions
+2 -2
View File
@@ -3884,8 +3884,8 @@ df_window_update_and_render(Arena *arena, OS_EventList *events, DF_Window *ws, D
DF_View *view = df_view_from_handle(panel->selected_tab_view);
if(!df_view_is_nil(view) &&
contains_2f32(panel_rect, ui_mouse()) &&
abs_f32(view->scroll_pos.x.off) > 0.01f ||
abs_f32(view->scroll_pos.y.off) > 0.01f)
(abs_f32(view->scroll_pos.x.off) > 0.01f ||
abs_f32(view->scroll_pos.y.off) > 0.01f))
{
build_hover_eval = 0;
ws->hover_eval_first_frame_idx = df_frame_index();
+1
View File
@@ -571,6 +571,7 @@ os_graphical_init(void)
wndclass.hInstance = w32_h_instance;
wndclass.lpszClassName = L"graphical-window";
wndclass.hCursor = LoadCursorA(0, IDC_ARROW);
wndclass.hIcon = LoadIcon(w32_h_instance, MAKEINTRESOURCE(1));
ATOM wndatom = RegisterClassExW(&wndclass);
(void)wndatom;
}