You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix minimap preview escape and merge recent files into Open File button
Minimap preview:
- Preview stays visible when mouse moves into it (200ms hide delay)
- Listeners on preview box cancel hide timer on mouseenter
- Can now scroll horizontally inside the preview without it vanishing
Recent files:
- Merged separate chevron button into Open File button as inline ▾
- Click the chevron OR right-click the button to open recent files
- Regular left-click still opens the file dialog
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/renderer/index.html
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,10 +28,9 @@
28
28
<divclass="toolbar">
29
29
<divclass="toolbar-left">
30
30
<divclass="open-file-wrapper">
31
-
<buttonid="btn-open-file" class="toolbar-btn" title="Open file" data-help="Open a log file for analysis. Supports text logs, JSON logs, CSV, and large files (100K+ lines). Drag & drop also works.">
32
-
<spanclass="icon">📂</span> Open File
31
+
<buttonid="btn-open-file" class="toolbar-btn" title="Open file (click) | Recent files (right-click)" data-help="Open a log file for analysis. Right-click or use the dropdown for recent files. Supports text logs, JSON logs, CSV, and large files (100K+ lines). Drag & drop also works.">
32
+
<spanclass="icon">📂</span> Open File<spanid="btn-recent-files" class="open-file-chevron" title="Recent files">▾</span>
33
33
</button>
34
-
<buttonid="btn-recent-files" class="toolbar-btn small recent-files-chevron" title="Recent files">▾</button>
0 commit comments