@bobfrankston/rmfmail 1.1.101 → 1.1.103

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.
@@ -2246,7 +2246,7 @@ var init_message_viewer = __esm({
2246
2246
  ZOOM_MIN = 0.5;
2247
2247
  ZOOM_MAX = 3;
2248
2248
  ZOOM_STEP = 0.1;
2249
- previewZoom = clampZoom(parseFloat(localStorage.getItem(ZOOM_KEY) || "1"));
2249
+ previewZoom = clampZoom(parseFloat(localStorage.getItem(ZOOM_KEY) || "1.15"));
2250
2250
  subscribeStore("*", (ev) => {
2251
2251
  if (ev.kind !== "bodyFetchError")
2252
2252
  return;
@@ -8705,7 +8705,7 @@ document.addEventListener("keydown", (e) => {
8705
8705
  const editable = t?.isContentEditable;
8706
8706
  const inEditable = tag === "INPUT" || tag === "TEXTAREA" || tag === "SELECT" || editable;
8707
8707
  const listSelectionCount = document.querySelectorAll("#ml-body .ml-row.selected").length;
8708
- if (inEditable && listSelectionCount === 0) return;
8708
+ if (inEditable && listSelectionCount <= 1) return;
8709
8709
  e.preventDefault();
8710
8710
  deleteSelection();
8711
8711
  }