mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-04-25 11:00:00 +09:00
Align list items, dont process selected item twice if changed in event loop, mouse button events should only occur when pressing left mouse button
This commit is contained in:
@@ -30,7 +30,7 @@ namespace gsr {
|
||||
const mgl::vec2f draw_pos = position + offset;
|
||||
const mgl::vec2f collision_margin(1.0f, 1.0f); // Makes sure that multiple buttons that are next to each other wont activate at the same time when the cursor is right between them
|
||||
mouse_inside = mgl::FloatRect(draw_pos + collision_margin, size - collision_margin).contains({ (float)event.mouse_move.x, (float)event.mouse_move.y });
|
||||
} else if(event.type == mgl::Event::MouseButtonPressed) {
|
||||
} else if(event.type == mgl::Event::MouseButtonPressed && event.mouse_button.button == mgl::Mouse::Left) {
|
||||
const bool clicked_inside = mouse_inside;
|
||||
|
||||
if(show_dropdown && clicked_inside && mouse_inside_item == -1) {
|
||||
|
||||
Reference in New Issue
Block a user