mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:01:33 +00:00
Hard-code the gutter margin temporarily
This commit is contained in:
parent
7a8f219251
commit
9a41c58779
1 changed files with 4 additions and 1 deletions
|
@ -9771,11 +9771,14 @@ impl InputHandler for Editor {
|
|||
let scroll_position = snapshot.scroll_position();
|
||||
let scroll_left = scroll_position.x * em_width;
|
||||
|
||||
// todo!() How do we actually get the gutter margin here?
|
||||
let gutter_margin = px(84.46154);
|
||||
|
||||
let start = OffsetUtf16(range_utf16.start).to_display_point(&snapshot);
|
||||
let end = OffsetUtf16(range_utf16.end).to_display_point(&snapshot);
|
||||
let start_y = line_height * (start.row() as f32 - scroll_position.y);
|
||||
let end_y = line_height * (end.row() as f32 - scroll_position.y);
|
||||
let start_x = snapshot.x_for_point(start, &text_layout_details) - scroll_left;
|
||||
let start_x = snapshot.x_for_point(start, &text_layout_details) - scroll_left + gutter_margin;
|
||||
let end_x = snapshot.x_for_point(end, &text_layout_details) - scroll_left;
|
||||
|
||||
Some(Bounds::from_corners(
|
||||
|
|
Loading…
Reference in a new issue