Table row grab handle missing when editor line numbers are used

Steps to reproduce

  1. Turn on editor line numbers in settings
  2. Insert table
  3. Attampt to drag table row

Did you follow the troubleshooting guide? [Y/N]

Yes.

Expected result

Drag handle visible.

Actual result

Drag handle not visible.

Environment

SYSTEM INFO:
Obsidian version: v1.5.0
Installer version: v1.4.13
Operating system: Windows 10 Pro 10.0.22621
Login status: logged in
Catalyst license: insider
Insider build toggle: on
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: on

RECOMMENDATIONS:
none


Additional information

2 Likes

Same here. Seems like the handle is hidden behind the “gutter” element.

image

1 Like

thanks

1 Like

In the meantime, we can just pad the content by the drag handle’s width in a CSS snippet:

.markdown-source-view.mod-cm6.is-readable-line-width .cm-content {
  padding-left: calc(var(--size-4-4) - var(--table-selection-border-width));
}

And voila, a simple fix that works :slight_smile:

will be fixed v1.5.1

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.