fix(tailwind): strip remaining apostrophes from ResizeHandles comments
Follow-up to 92ac7ea. Two apostrophes remained (KWin's and don't)
that kept tripping Tailwind v4 JIT the same way. Removed.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -30,7 +30,7 @@
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
// Lock the pointer to this handle BEFORE asking Wayland to begin a
|
// Lock the pointer to this handle BEFORE asking Wayland to begin a
|
||||||
// resize. Without capture, KWin's xdg_toplevel.resize grab arrives
|
// resize. Without capture, KWin xdg_toplevel.resize grab arrives
|
||||||
// between mousedown synthesis and pointer movement, often losing the
|
// between mousedown synthesis and pointer movement, often losing the
|
||||||
// diagonal component and collapsing a corner drag to a single axis.
|
// diagonal component and collapsing a corner drag to a single axis.
|
||||||
// pointerdown + setPointerCapture keeps the direction pinned.
|
// pointerdown + setPointerCapture keeps the direction pinned.
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if enabled}
|
{#if enabled}
|
||||||
<!-- Edge strips. Inset by corner size so edge and corner zones don't overlap. -->
|
<!-- Edge strips. Inset by corner size so edge and corner zones do not overlap. -->
|
||||||
<div class="kon-rh kon-rh-n" onpointerdown={(e) => startResize(e,"North")}></div>
|
<div class="kon-rh kon-rh-n" onpointerdown={(e) => startResize(e,"North")}></div>
|
||||||
<div class="kon-rh kon-rh-s" onpointerdown={(e) => startResize(e,"South")}></div>
|
<div class="kon-rh kon-rh-s" onpointerdown={(e) => startResize(e,"South")}></div>
|
||||||
<div class="kon-rh kon-rh-w" onpointerdown={(e) => startResize(e,"West")}></div>
|
<div class="kon-rh kon-rh-w" onpointerdown={(e) => startResize(e,"West")}></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user