Skip to content

Commit

Permalink
Fix #132 quick jump should create and/or focus the tab
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmonettas committed Jan 27, 2024
1 parent cbd0199 commit 2e1496c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
### Bugs fixed

- Pasting in quick jump box doesn't fire autocomplete
- Quick jump should create and/or focus the tab

## 3.9.1 (12-01-2024)

Expand Down
4 changes: 3 additions & 1 deletion src-dbg/flow_storm/debugger/ui/flows/screen.clj
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@
[ev]
(clean-objs flow-id thread-id)))
(-> all-tabs
(.addAll [thread-tab]))))))
(.addAll [thread-tab]))

(.select ^SingleSelectionModel sel-model ^Tab thread-tab)))))

(defn select-flow-tab [flow-id]
(let [[flows-tabs-pane] (obj-lookup "flows_tabs_pane")
Expand Down

0 comments on commit 2e1496c

Please sign in to comment.