Browse Source

LibWeb: Move cursor along when drag-selecting in editable content

Andreas Kling 4 năm trước cách đây
mục cha
commit
c51209a06a
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      Userland/Libraries/LibWeb/Page/EventHandler.cpp

+ 1 - 0
Userland/Libraries/LibWeb/Page/EventHandler.cpp

@@ -262,6 +262,7 @@ bool EventHandler::handle_mousemove(const Gfx::IntPoint& position, unsigned butt
         if (m_in_mouse_selection) {
             auto hit = layout_root()->hit_test(position, Layout::HitTestType::TextCursor);
             if (hit.layout_node && hit.layout_node->dom_node()) {
+                m_frame.set_cursor_position(DOM::Position(*node, result.index_in_node));
                 layout_root()->set_selection_end({ hit.layout_node, hit.index_in_node });
             }
             if (auto* page = m_frame.page())