@signal9/era-ui 1.18.0 → 1.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/os/window.svelte +6 -3
- package/package.json +1 -1
package/dist/os/window.svelte
CHANGED
|
@@ -78,9 +78,12 @@
|
|
|
78
78
|
{/if}
|
|
79
79
|
<span class={cn('truncate text-body', focused ? 'text-bright' : 'text-muted')}>{win.title}</span
|
|
80
80
|
>
|
|
81
|
-
<!-- Close / minimize / maximize. data-pane-control
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
<!-- Close / minimize / maximize. Deliberately NOT data-pane-control (same as
|
|
82
|
+
the raw Pane.Close): a left press-and-HOLD drags the window — neodrag only
|
|
83
|
+
drags the primary button and suppresses the trailing click after a real
|
|
84
|
+
drag, so a clean click still closes, and right/middle arming is a
|
|
85
|
+
different button entirely. -->
|
|
86
|
+
<div class="ml-auto shrink-0">
|
|
84
87
|
<Button
|
|
85
88
|
icon
|
|
86
89
|
size="icon"
|