diff --git a/bundled-addons/screenshot/addon.json b/bundled-addons/screenshot/addon.json
index 5f06560..bb7d04b 100644
--- a/bundled-addons/screenshot/addon.json
+++ b/bundled-addons/screenshot/addon.json
@@ -1,7 +1,7 @@
{
"id": "screenshot",
"name": "Screenshot",
- "version": "0.6.1",
+ "version": "0.6.2",
"description": "Capture the current tab — visible viewport, full page, or a rectangle you draw. Preview + annotate editor (crop, arrow, rect, ellipse, pen, text, blur/mosaic redaction, undo, copy, save) live inside the sidebar. Expand the sidebar to full window for a canvas-sized editor.",
"author": "Silent Mode",
"icon": "📸",
diff --git a/bundled-addons/screenshot/editor.css b/bundled-addons/screenshot/editor.css
index cf165e1..2e4e87a 100644
--- a/bundled-addons/screenshot/editor.css
+++ b/bundled-addons/screenshot/editor.css
@@ -23,17 +23,19 @@ body { background: var(--bg); color: var(--ink);
.topbar, .toolbar { display: flex; align-items: center; gap: 4px; padding: 6px 8px;
border-bottom: 1px solid var(--line); background: var(--panel);
user-select: none; flex-wrap: wrap; }
-/* Older versions grouped the drawing tools in the middle of the bar — keep
- the drawing / swatch / width / undo cluster centred while the top-bar
- (back / name → save / copy / sound / max / close) stays edge-anchored. */
-.toolbar { justify-content: center; gap: 10px; row-gap: 6px; }
-/* Each visible group of tools wraps as a unit — when the sidebar gets
- narrow, the whole swatch row moves to the next line instead of a
- single dot spilling by itself. */
+/* Toolbar layout: drawing groups pack left/centre, the Copy/Save actions
+ pin to the right. When the sidebar is too narrow to hold everything in
+ one row, each group wraps as a unit (never a single dot orphaned) and
+ the actions cluster wraps as its own row on the right. */
+.toolbar { justify-content: flex-start; gap: 10px; row-gap: 6px; }
.tgroup { display: inline-flex; align-items: center; gap: 4px; flex: 0 0 auto; }
+.tgroup.actions { margin-left: auto; }
/* Close-sidebar button — reads as danger without shouting. */
-#close-sidebar:hover { border-color: rgba(255,91,91,.55); color: var(--danger); }
+#close-sidebar:hover,
+#discard:hover { border-color: rgba(255,91,91,.55); color: var(--danger); }
+.btn.danger { color: var(--danger); }
+.btn.danger:hover { border-color: rgba(255,91,91,.55); }
.topbar .name { color: var(--dim); font-size: 11.5px; overflow: hidden;
text-overflow: ellipsis; white-space: nowrap; max-width: 200px; margin: 0 4px; }
.topbar .spacer, .toolbar .spacer { flex: 1; }
diff --git a/bundled-addons/screenshot/editor.html b/bundled-addons/screenshot/editor.html
index 7c798e7..90a5eb6 100644
--- a/bundled-addons/screenshot/editor.html
+++ b/bundled-addons/screenshot/editor.html
@@ -13,8 +13,9 @@
screenshot
+ user is dragging a crop rectangle. Copy / Save / Discard live in
+ the toolbar now, so only the maximize + sound + close cluster on
+ the right needs to yield to the crop confirm buttons. -->
-
-